TelenkovDmitry 1 ヶ月 前
コミット
d3946f3056
8 ファイル変更841 行追加709 行削除
  1. 21 1
      modules/button.c
  2. 2 0
      modules/button.h
  3. 65 0
      modules/logic.c
  4. 25 1
      modules/logic.h
  5. 143 126
      output/drone.hex
  6. 578 578
      project/ewarm/drone.dep
  7. 3 3
      project/settings/muvie_string_controller.wsdt
  8. 4 0
      user/main.c

+ 21 - 1
modules/button.c

@@ -22,7 +22,7 @@ void but_init(void)
         
     GPIO_InitStruct.Pin = GPIO_PIN_4;
     GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
-    GPIO_InitStruct.Pull = GPIO_NOPULL;
+    GPIO_InitStruct.Pull = GPIO_PULLUP;
     GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
     HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
     
@@ -36,6 +36,13 @@ void but_init(void)
     but_start.fActivation       = false;
     
     but_start.stateOld   = but_get_state(&but_start);
+    
+    // Переключатель "строка/одиночный"
+    GPIO_InitStruct.Pin = GPIO_PIN_6;
+    GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
+    GPIO_InitStruct.Pull = GPIO_PULLUP;
+    GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
+    HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
 }
 
 
@@ -104,5 +111,18 @@ BUTTON_STATE_t but_get_state(but_no_fix_t *button)
 
 static void but_start_down_handler(void)
 {
+    // Режим "одиночный"
+    if (!but_is_string())
+    {
+        
+    }  
+      
     printf("Button\r\n");
 }
+
+
+//
+bool but_is_string(void)
+{
+    return (bool)HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_6);
+}

+ 2 - 0
modules/button.h

@@ -50,6 +50,8 @@ void bu_no_fix_handler(but_no_fix_t* button);
 //
 BUTTON_STATE_t but_get_state(but_no_fix_t *button);
 
+//
+bool but_is_string(void);
 
 #endif  // __BUTTON_H
 

+ 65 - 0
modules/logic.c

@@ -6,7 +6,72 @@
 
 static uint8_t step_number = 0;
 
+#define CH_NUM      10
 
+uint8_t channel_index = 0;  // текущий индекс канала для срабатывания
+
+channel_cnt_t channel_cnt[CH_NUM];
+
+
+channel_t channels[CH_NUM] = {{GPIOA, GPIO_PIN_9},
+                              {GPIOA, GPIO_PIN_10},
+                              {GPIOA, GPIO_PIN_11},
+                              {GPIOA, GPIO_PIN_12},
+                              {GPIOA, GPIO_PIN_15},
+                              {GPIOB, GPIO_PIN_7},
+                              {GPIOB, GPIO_PIN_6},
+                              {GPIOB, GPIO_PIN_5},
+                              {GPIOB, GPIO_PIN_4},
+                              {GPIOB, GPIO_PIN_3}};
+
+
+//
+void channel_init(void)
+{
+    GPIO_InitTypeDef GPIO_InitStruct = {0};
+    
+    __HAL_RCC_GPIOA_CLK_ENABLE();
+    __HAL_RCC_GPIOB_CLK_ENABLE();
+
+    GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
+    GPIO_InitStruct.Pull = GPIO_PULLDOWN;
+    GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
+    
+    for (int i = 0; i < CH_NUM; i++)
+    {
+        GPIO_InitStruct.Pin = channels[i].pin;
+        HAL_GPIO_Init(channels[i].port, &GPIO_InitStruct);
+        
+        HAL_GPIO_WritePin(channels[i].port, channels[i].pin, GPIO_PIN_RESET);
+   }
+    
+    for (int i = 0; i < CH_NUM; i++)
+    {
+        channel_cnt[i].active = false;
+        channel_cnt[i].cnt = 0;
+    }
+}
+
+
+// Активировать текущий канал
+// Запустить счетчик
+void logic_single(void)
+{
+    HAL_GPIO_WritePin(channels[channel_index].port, channels[channel_index].pin, GPIO_PIN_SET);
+    channel_cnt[channel_index].active = true;
+    
+    channel_index++;
+    
+    if (channel_index == 10)
+        channel_index = 0;
+}
+
+
+// сброс каналов через 0.5 секунды
+void logic_cnt_task(void)
+{
+    
+}
 
 //
 void logic_main(void)

+ 25 - 1
modules/logic.h

@@ -3,7 +3,31 @@
 
 #include <stdbool.h>
 
-  
+
+
+typedef struct
+{
+    GPIO_TypeDef* port;
+    uint16_t pin;
+    
+} channel_t;
+
+
+//
+typedef struct
+{
+    bool active;
+    uint16_t cnt;
+    
+} channel_cnt_t;
+
+
+//
+void channel_init(void);
+
+//
+void logic_single(void);
+
 //
 void logic_main(void);
 

+ 143 - 126
output/drone.hex

@@ -1,15 +1,15 @@
 :020000040800F2
-:1000000018080020014B00081D4B0008214B000878
+:1000000068080020C14B0008DD4B0008E14B0008E8
 :1000100000000000000000000000000000000000E0
-:10002000000000000000000000000000254B000858
-:100030000000000000000000274B0008C945000830
+:10002000000000000000000000000000E54B000898
+:100030000000000000000000E74B00083547000802
 :100040007F11000800000000971100084B12000803
 :100050009F120008AF17000833180008371800086F
 :100060000000000047420008532D0008BB3600087E
 :100070000F37000883380008D3380008000000005C
-:10008000A53700080000000000000000E748000855
-:1000900000000000FB320008053300080B4900088F
-:1000A000000000001B4A0008000000000B2E0008A2
+:10008000A537000800000000000000000B47000832
+:1000900000000000FB320008053300082749000873
+:1000A000000000004B490008000000000B2E000873
 :1000B000FDB5B2B03A98049102A93B2288540020C1
 :1000C0000D9026A8401C31900DE00498329A90477C
 :1000D0000490002801D100F037FF0D98401C0D90CE
@@ -47,7 +47,7 @@
 :1002D000001D349908600594002C00D0BAE002A8F3
 :1002E0003B21405C002800D1ADE00024E4430648F7
 :1002F0007844143000F018FF201A01D000F024FEDA
-:1003000000F0F9FD3446000068460000CBCCCC0C70
+:1003000000F0F9FDF446000028470000CBCCCC0CEF
 :10031000641E01D000F00EFE3295079D17AC002D33
 :100320000FD0329E227802A9300000F0C7FE0028CC
 :1003300002D4641C6D1EF5D13296002801D000F065
@@ -83,7 +83,7 @@
 :10051000F2FC0F99079A891A0A9A891A081A002870
 :1005200001DC00F0E8FC00F031FC02A83B21415C5A
 :10053000002909D00024E4434B487844FF302B3095
-:10054000D8E600BF484400003A21405C62286AD0E7
+:10054000D8E600BF084500003A21405C62286AD026
 :10055000682819D06A2845D06C2806D071284FD059
 :10056000742831D07A2821D06FE03498006801686F
 :10057000001D349A106000297AD10024E4433B48DE
@@ -101,7 +101,7 @@
 :100630001060002905D10024E4430C4878442C3094
 :1006400058E60D98087000F056FC34980068016870
 :10065000001D349A106000290AD10024E4430348A5
-:100660007844083046E600BFD8420000EC42000063
+:100660007844083046E600BF98430000AC430000E1
 :100670000D98086000F03FFC34980268D21D0720F6
 :1006800082433498026003CA349B1A6002AA03C2F0
 :100690002022C80F04D007982D2117AA11540DE06D
@@ -132,8 +132,8 @@
 :10082000FBFC4CD869004A0D11001C31002A19D07C
 :10083000002917DDB24A914206DB1005290080220B
 :1008400012061140014311E07F4A2A400805104377
-:1008500005000DE03C4100003C410000404100002B
-:1008600038410000290080221206114000240D00AA
+:1008500005000DE0FC410000FC41000000420000EA
+:10086000F8410000290080221206114000240D00EA
 :100870002000290000F0EAFC1490FF1F002F09DD82
 :1008800000F01EFD02000B002000290000F085FD95
 :1008900004000D00F01D0721149A002A0ADD491EEC
@@ -175,7 +175,7 @@
 :100AD000684600786946487000F06AFE406A00780F
 :100AE000694608700E9F20B2002803DC139C054E57
 :100AF0007E4410366846807866280DD16D1C25E04E
-:100B0000FF0700009C3E000097750000A0860100D2
+:100B0000FF0700005C3F000097750000A086010011
 :100B10000000F03F84D7974168468078672847D126
 :100B200028B20321C943884248DBB84246DA6D1C2B
 :100B300002A8008F1299C0B2084203D120B2B84275
@@ -275,7 +275,7 @@
 :10111000C043F9E7C9B202788A4203D0401C002AD2
 :10112000F9D1002070472E0080B5002801D100BF02
 :1011300007A006490B68002B03D022220021984704
-:1011400001E000F070FB222002BD00000C04002032
+:1011400001E000F070FB222002BD00005C040020E2
 :10115000636F6E73747261696E742068616E646C23
 :1011600065723A20626164206D6573736167650022
 :10117000431C0178401C0942FBD1C01A7047FEE7AE
@@ -378,7 +378,7 @@
 :101780000BDBFF19BC4211DA240500274208AE41E9
 :101790007841614166463143F0BD641C05D1401C6F
 :1017A0006141CF0201D34908F4E750E75DE7FEE766
-:1017B000014870470000000008000020124224D0B9
+:1017B000014870470000000058000020124224D069
 :1017C000994228D970B500251B4202D00C00002197
 :1017D00009E00024012649186441944200D3A41A68
 :1017E0007641F8D33100012601E0764109D2001894
@@ -721,9 +721,9 @@
 :102CF00000E00F48F2BD0C480068704780B5FFF750
 :102D0000FAFF0F49094A1268120A5207520F895CEA
 :102D1000C84002BD2C100240002002408913000070
-:102D2000FFF8FFFFF04A00080400002004100240F2
-:102D300000127A00D04A0008E04A000800093D006D
-:102D4000344B000801480068704700BF00040020B1
+:102D2000FFF8FFFFB04B00085400002004100240E1
+:102D300000127A00904B0008A04B000800093D00EB
+:102D4000F44B000801480068704700BF50040020A1
 :102D50007047FEE700B50200D205D20D364B1A804F
 :102D6000364A1268D2695206FAD500BD38B586B027
 :102D70008020800232490A6802430A6009680840DC
@@ -738,13 +738,13 @@
 :102E00002000FFF701F907B030BD80B50B48FEF791
 :102E100080FD01BD10B504000C490878064A1080F9
 :102E200006480268D2695206FAD50122FFF7ECF88B
-:102E300000F03EFA10BD0000283801408C00002050
-:102E400014100240181002400038014016040020FF
+:102E300000F03EFA10BD000028380140DC00002000
+:102E400014100240181002400038014066040020AF
 :102E500010B50400FA2080000E490978FEF72DFB1A
 :102E600001000D480068FEF728FB00F0CBF90028B0
 :102E700001D001200CE0042C09D200222100002006
 :102E8000C04300F0AEF905480460002000E00120D6
-:102E900010BD00BF880000200400002000000020BA
+:102E900010BD00BFD80000205400002050000020CA
 :102EA000F1B582B000230868D840002800D1F3E0D3
 :102EB0000124086825009D400540019501980028DF
 :102EC00000D1E7E0032548682840012803D048687E
@@ -816,9 +816,9 @@
 :1032E000884202D100F052FA06E020680E49884276
 :1032F00002D10C4800F083F810BD80B5054800F0FD
 :10330000A5F801BD80B5074800F0A0F801BD000098
-:10331000181002407C02002000440140E703000036
-:103320007FBB0000C402002000480140CF0700001E
-:1033300010040020448B6CE7FB6927400080474065
+:1033100018100240CC02002000440140E7030000E6
+:103320007FBB00001403002000480140CF070000CD
+:1033300060040020448B6CE7FB6927400080474015
 :10334000BF1200002844014010B50400002C01D138
 :10335000012026E03D20205C002805D100203C21F2
 :103360006054200000F0A8F902203D216054211D86
@@ -899,9 +899,9 @@
 :103810009020C005FFF74EFC0F48007810280DD10E
 :103820000E480178002909D1012101700C4801706E
 :1038300004E00020054908600549086031BD00002A
-:1038400040420F0034020020F4030020F80300205F
-:10385000FC03002041060000140400201304002093
-:10386000120400207047704770477047704710B5CA
+:1038400040420F008402002044040020480400206D
+:103850004C040020410600006404002063040020A2
+:10386000620400207047704770477047704710B57A
 :103870000400080011000200200000F003F82000FE
 :1038800010BDFEE71206130A1A43130C1A4300BFB9
 :10389000094205D0830705D00270401C491EF9D1AA
@@ -1001,7 +1001,7 @@
 :103E7000FEF768FF801B0328F5D320680068284000
 :103E80000028F0D1A06B10210143A163E06B054332
 :103E9000E563012000E0002076BD00000110000075
-:103EA000082701400400002040420F0070B50400C4
+:103EA000082701405400002040420F0070B5040074
 :103EB000002005000321226892680A40012A0BD1E4
 :103EC000012223681B681340002B03D12368DB68A1
 :103ED0001B0401D51000FFE7002834D0206880685B
@@ -1063,10 +1063,10 @@
 :1042500001BD38B50500124C2088FDF721F811A2E8
 :104260000CCAFDF7E2F900F07EF901000F48FFF7F4
 :1042700088FF0A49086061880D48FFF7AFFF0649CB
-:10428000088031BD18100240500300200024014076
-:10429000141002400C03002010040020EC03002046
-:1042A000F0030020F564FED137694A3F8C010020FD
-:1042B00090030020E0030020080002407047704790
+:10428000088031BD18100240A00300200024014026
+:10429000141002405C030020600400203C04002055
+:1042A00040040020F564FED137694A3FDC0100205C
+:1042B000E0030020300400200800024070477047EF
 :1042C000FEB5040000252F00019500953420205CE8
 :1042D000012801D102205EE0012630003421605423
 :1042E000032021688968014001290AD121680968F1
@@ -1115,99 +1115,116 @@
 :104590001143490AC200524100D9491CC81870474A
 :1045A0000AD1800A0A0302435212921C04D9D3078B
 :1045B0000B40D00518437047C80FC0077047C80F9D
-:1045C0000002FF30C005704780B500F089F800F0A8
-:1045D00075F83F480178491C017001780A2901D11A
-:1045E0000021017000200A2824DA3A490C224243B3
-:1045F0008A18127A002A1BD00C2242438A18928809
-:10460000521E0C234343CB189A800C2242438A1833
-:104610009288002A0CD10C2242438A18D2880C239B
-:104620004343CB189A8001220C234343C9184A7292
-:10463000401CD8E701BD70B500231A000A2A24DA0D
-:10464000244C0C2555436559002D1CD101250C2601
-:104650005643A61935720C25554365196B720C2308
-:104660005343E1500C235343E318D8800C235343A6
-:10467000E318DB880C2555436419A380164B1C688E
-:10468000641C1C6001E0521CD8E770BD38B50024E2
-:1046900025000A2D11DA0F480C2169434118497A87
-:1046A000002908D021000C226A43821851720C2183
-:1046B0006943405880476D1CEBE731BD00B50748A2
-:1046C0000168002902D00168491E016000BD000098
-:1046D0001504002014010020080400200404002018
-:1046E00003480168034A127889180160704700BFC7
-:1046F0000004002088000020F8B586B014220021B4
-:1047000001A8FFF7B4F88020800239490A68024303
-:104710000A6009680840009000981027019700245B
-:104720000294039404949025ED0501A92800FEF756
-:10473000B7FB304E3560B7800220F0802E48F06025
-:104740002E483061B4612820B083B477300000F087
-:1047500042F8B07207B0F0BD704780B5254800F050
-:1047600001F801BD70B50400E07A022814D0A188D8
-:104770002068FEF792FC06003000C0B2002802D18B
-:104780000020E07201E00120E072E07AA17A884224
-:104790001ED00220E0721BE02089401C2081E088AE
-:1047A0002189884214D2002528002081A188206810
-:1047B000FEF773FC0600A5613000C0B2002803D1EB
-:1047C000E5722069804703E00120E072E0688047DD
-:1047D000E07AA07270BD10B50400A1882068FEF7D1
-:1047E0005CFC10BD80B5064800F00CF801BD00006F
-:1047F00014100240C0030020E54700085947000894
-:10480000104B00080EB4C0B5020003A801900020B0
-:10481000009001AB0121044878440C30FBF748FCC0
-:10482000029906B0084700BF7302000080B500F08F
-:104830005BF800F023F8FEF76BFFFFF715FCFEF7BF
-:10484000F3FCFFF759FFFEF791FA0948FFF7DAFF8B
-:10485000FA20800000F05AF806490A20FFF7EBFE24
-:1048600005490A20FFF7E7FEFFF710FFFCE700000D
-:10487000C04A0008314200085B47000838B590B0D4
-:104880003022002104A8FEF7F2FF10220021684622
-:10489000FEF7EDFF122004900120079009901020F0
-:1048A00008900A9002240C9400250D95A020800306
-:1048B0000E900F9504A8FDF7F3FE002801D000F03C
-:1048C0000FF8072000900194029503950121684696
-:1048D000FEF746F9002801D000F002F811B030BD13
-:1048E00000B572B6FEE7FEE780B506480168102203
-:1048F0000A4302600020FEF7ABFA00F005F8002042
-:1049000002BD0000002002407047FEE770B50400C1
-:10491000FEF718FA050026000020C043864202D0A8
-:10492000044800783618FEF70DFA401BB042FAD35F
-:1049300070BD00BF88000020686A6C747A4C00006B
-:104940007072696E74665F733A20256E20646973B5
-:10495000616C6C6F776564007072696E74663A2082
-:1049600062616420256E20617267756D656E7400EA
-:104970007072696E74665F733A2062616420257399
-:1049800020617267756D656E7400000000000000A4
-:104990006E616E004E414E00696E6600494E4600E3
-:1049A000300070B40123002413E00168001D194297
-:1049B00002D04D466D1E49190C60091D121F042AB4
-:1049C000FAD20D00960701D50C80AD1C1A4000D01C
-:1049D0002C700268001D002AE7D170BC704730B50A
-:1049E00001684118446862088A188368E40704D59E
-:1049F0004C461B1901E0641C06D191420BD00C7887
-:104A000064B2491C0D78491C1D705B1C002CF2D44B
-:104A1000641EF7D5F1E70C3030BDFEE710B507494D
-:104A200079441831064C7C44163404E0081D0A68A9
-:104A3000891888470100A142F8D110BD0800000084
-:104A4000240000005FFFFFFF8C0300008C000020AB
-:104A5000000000008BFFFFFFE6000000C400000024
-:104A60000000002000F00DF8002801D0FFF7D6FF6D
-:104A700000BF00BF002000BF00BFFFF7D7FE00F05F
-:104A800002F80120704780B500F002F801BD000077
-:104A900007463846FCF7D0FEFBE738B505000C00AA
-:104AA000200000F005F8A04200D00025280032BD0B
-:104AB00080B50249FEF74EF902BD00BF400000205C
-:104AC000465720737461727465642E2E2E0D0A0091
-:104AD00002030405060708090A0B0C0D0E0F10103F
-:104AE0000102030405060708090A0B0C0D0E0F103E
-:104AF000000000000000000001020304060708098E
-:104B000001488047014800473D4B0008294B0008F9
-:104B1000427574746F6E0D0A0000000000B5FEE768
-:104B200000B5FEE77047704700BF00BF00BF00BF81
-:104B3000FFF798FF00000000010203047047000423
-:104B4000FC001E127A008E4A00088E4A00088E4A27
-:104B500000088E4A00088E4A00088E4A00088E4AD5
-:104B60000008F8FF0B261100088E4A00088E4A0044
-:104B700008FAFF15000002040101E40100203402DC
-:104B80000020E4010020E4010020FC0003E4010017
-:104B900020FC00078400002070000020E0000001DD
-:0400000508004B297B
+:1045C0000002FF30C0057047F8B586B01422002104
+:1045D00001A8FFF74CF98020800240490A68024395
+:1045E0000A6009680840009000981027019700248D
+:1045F000029401250395049401A99020C005FEF7BB
+:104600004FFC374E9020C0053060B7800220F0800C
+:104610003448F06034483061B4612820B083200011
+:10462000B077300000F04CF8B07240200190029456
+:104630000395049401A99020C005FEF731FC07B052
+:10464000F0BD704780B5264800F001F801BD70B597
+:104650000400E07A022814D0A1882068FEF71DFD2E
+:1046600006003000C0B2002802D10020E07201E054
+:104670000120E072E07AA17A88421ED00220E07226
+:104680001BE02089401C2081E0882189884214D2C7
+:10469000002528002081A1882068FEF7FEFC060086
+:1046A000A5613000C0B2002803D1E57220698047BF
+:1046B00003E00120E072E0688047E07AA07270BDFC
+:1046C00010B50400A1882068FEF7E7FC10BD80B596
+:1046D00000F00EF8054800F019F801BD1410024072
+:1046E00010040020CF46000843460008D04B0008C5
+:1046F00080B540219020C005FEF7CFFC002801D0F6
+:10470000012000E00020C0B202BDFEE70EB4C0B53B
+:10471000020003A801900020009001AB0121044891
+:1047200078440C30FBF7C4FC029906B0084700BF80
+:104730002B04000080B500F089F800F075F83F48C0
+:104740000178491C017001780A2901D1002101700A
+:1047500000200A2824DA3A490C2242438A18127AA5
+:10476000002A1BD00C2242438A189288521E0C2326
+:104770004343CB189A800C2242438A189288002A1D
+:104780000CD10C2242438A18D2880C234343CB1805
+:104790009A8001220C234343C9184A72401CD8E76F
+:1047A00001BD70B500231A000A2A24DA244C0C2516
+:1047B00055436559002D1CD101250C265643A619D9
+:1047C00035720C25554365196B720C235343E15028
+:1047D0000C235343E318D8800C235343E318DB889E
+:1047E0000C2555436419A380164B1C68641C1C607F
+:1047F00001E0521CD8E770BD38B5002425000A2D11
+:1048000011DA0F480C2169434118497A002908D070
+:1048100021000C226A43821851720C2169434058CE
+:1048200080476D1CEBE731BD00B5074801680029E2
+:1048300002D00168491E016000BD0000650400202F
+:10484000640100205804002054040020034801683B
+:10485000034A127889180160704700BF5004002095
+:10486000D800002010B500F05FF800F027F800F045
+:104870006DF8FEF74DFFFFF7F7FBFEF7D5FCFFF7EE
+:10488000A3FEFEF773FA0A48FFF740FFFA20800004
+:1048900000F09CF807490A20FFF783FF06490A2029
+:1048A000FFF77FFFFFF724FF0400FFF7A5FFFCE7FA
+:1048B000804B0008314200084546000838B590B0EA
+:1048C0003022002104A8FEF7D2FF10220021684602
+:1048D000FEF7CDFF122004900120079009901020D0
+:1048E00008900A9002240C9400250D95A0208003C6
+:1048F0000E900F9504A8FDF7D3FE002801D000F01C
+:104900000FF8072000900194029503950121684655
+:10491000FEF726F9002801D000F002F811B030BDF2
+:1049200000B572B6FEE7FEE780B5064801681022C2
+:104930000A4302600020FEF78BFA00F005F8002021
+:1049400002BD0000002002407047FEE738B586B087
+:104950001422002101A8FEF78AFF80208002194955
+:104960000A6802430A600A6810400090009880209C
+:10497000C0020A6802430A60096808400090009873
+:104980000120029002200390002504950A2D17DAD9
+:104990000D4C0820684320188088019001A9082048
+:1049A00068432058FEF77CFA00220820684320184C
+:1049B0008188082068432058FEF77CFB6D1CE5E7E2
+:1049C00007B030BD141002400000002070B5040094
+:1049D000FEF7B8F9050026000020C043864202D049
+:1049E000044800783618FEF7ADF9401BB042FAD300
+:1049F00070BD00BFD8000020686A6C747A4C00005B
+:104A00007072696E74665F733A20256E20646973F4
+:104A1000616C6C6F776564007072696E74663A20C1
+:104A200062616420256E20617267756D656E740029
+:104A30007072696E74665F733A20626164202573D8
+:104A400020617267756D656E7400000000000000E3
+:104A50006E616E004E414E00696E6600494E460022
+:104A6000300070B40123002413E00168001D1942D6
+:104A700002D04D466D1E49190C60091D121F042AF3
+:104A8000FAD20D00960701D50C80AD1C1A4000D05B
+:104A90002C700268001D002AE7D170BC704730B549
+:104AA00001684118446862088A188368E40704D5DD
+:104AB0004C461B1901E0641C06D191420BD00C78C6
+:104AC00064B2491C0D78491C1D705B1C002CF2D48B
+:104AD000641EF7D5F1E70C3030BD000010B5074972
+:104AE00079441831064C7C44163404E0081D0A68E9
+:104AF000891888470100A142F8D110BD08000000C4
+:104B0000240000005FFFFFFF8C030000DC0000209A
+:104B1000000000008BFFFFFFE60000004A010000DC
+:104B20000000002000F00DF8002801D0FFF7D6FFAC
+:104B300000BF00BF002000BF00BFFFF793FE00F0E2
+:104B400002F80120704780B500F002F801BD0000B6
+:104B500007463846FCF770FEFBE738B505000C0049
+:104B6000200000F005F8A04200D00025280032BD4A
+:104B700080B50249FEF7EEF802BD00BF90000020AC
+:104B8000465720737461727465642E2E2E0D0A00D0
+:104B900002030405060708090A0B0C0D0E0F10107E
+:104BA0000102030405060708090A0B0C0D0E0F107D
+:104BB00000000000000000000102030406070809CD
+:104BC0000148804701480047FD4B0008E94B0008B9
+:104BD000427574746F6E0D0A0000000000B5FEE7A8
+:104BE00000B5FEE77047704700BF00BF00BF00BFC1
+:104BF000FFF798FF00000000010203047047FD006A
+:104C000002480002FB0002480004FB0002480008C2
+:104C1000FB0002480010FB0002480080FD00030476
+:104C2000004880FC000304004840FC0003040048E6
+:104C300020FC000304004810FC000304004808FDA9
+:104C4000000004FC001E127A00DA4A0008DA4A006A
+:104C500008DA4A0008DA4A0008DA4A0008DA4A00A4
+:104C600008DA4A0008F8FF0B26110008DA4A0008A3
+:104C7000DA4A0008FAFF15000002040101340200BC
+:104C800020840200203402002034020020FC0003B3
+:104C900034020020FC0007D4000020C0000020E007
+:034CA00000000110
+:0400000508004BE9BB
 :00000001FF

+ 578 - 578
project/ewarm/drone.dep

@@ -5,1583 +5,1583 @@
     <configuration>
         <name>Debug</name>
         <outputs>
-            <file>$PROJ_DIR$\Debug\Obj\button.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\button.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_iwdg.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_uart.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2s.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_comp.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_uart.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_it.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_adc_ex.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_uart_ex.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_cortex.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tsc.xcl</file>
-            <file>$TOOLKIT_DIR$\lib\rt6M_tl.a</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pcd.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\system_stm32f0xx.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal.o</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_dma.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dma.o</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_flash_ex.h</file>
-            <file>$PROJ_DIR$\..\..\modules\button.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\system_stm32f0xx.__cstat.et</file>
-            <file>$PROJ_DIR$\..\..\modules\led.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_wwdg.__cstat.et</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_tim.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_iwdg.xcl</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\system\stm32f0xx.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_usart_ex.xcl</file>
-            <file>$TOOLKIT_DIR$\lib\shb_l.a</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pwr.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_flash_ex.xcl</file>
-            <file>$PROJ_DIR$\..\..\modules\pwm_out.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\main.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rtc.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_spi.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rcc.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_exti.xcl</file>
-            <file>$PROJ_DIR$\..\..\modules\tim.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_flash.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal.__cstat.et</file>
-            <file>$TOOLKIT_DIR$\inc\c\DLib_Defaults.h</file>
-            <file>$PROJ_DIR$\..\..\modules\misc.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\gpio.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_can.__cstat.et</file>
-            <file>$TOOLKIT_DIR$\inc\c\iccarm_builtin.h</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_adc.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\gpio.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pwr.__cstat.et</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_i2c.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smartcard.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_irda.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_exti.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rtc_ex.__cstat.et</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_uart_ex.h</file>
-            <file>$TOOLKIT_DIR$\inc\c\DLib_Product.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tim_ex.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_cec.o</file>
-            <file>$TOOLKIT_DIR$\inc\c\stdio.h</file>
-            <file>$TOOLKIT_DIR$\inc\c\ysizet.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\system_stm32f0xx.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dac_ex.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smbus.xcl</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_adc_ex.h</file>
-            <file>$PROJ_DIR$\..\stm32f030x6_flash.icf</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2c_ex.__cstat.et</file>
-            <file>$PROJ_DIR$\..\..\user\stm32f0xx_it.c</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dac_ex.o</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\system\system_stm32f0xx.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\adc.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tim.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_uart.o</file>
-            <file>$TOOLKIT_DIR$\inc\c\stdint.h</file>
-            <file>$PROJ_DIR$\..\..\modules\adc.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\system\stm32f030x6.h</file>
-            <file>$PROJ_DIR$\..\..\modules\pwm_in.c</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rtc_ex.xcl</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_flash.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_adc.xcl</file>
-            <file>$PROJ_DIR$\..\startup_stm32f030x6.s</file>
-            <file>$PROJ_DIR$\..\..\modules\logic.c</file>
-            <file>$PROJ_DIR$\Debug\Obj\logic.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tim_ex.xcl</file>
-            <file>$PROJ_DIR$\..\..\modules\tim.c</file>
-            <file>$PROJ_DIR$\Debug\Obj\led.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_wwdg.xcl</file>
-            <file>$PROJ_DIR$\..\..\modules\systick.c</file>
-            <file>$PROJ_DIR$\..\..\user\main.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_usart.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smbus.o</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\system\system_stm32f0xx.c</file>
-            <file>$PROJ_DIR$\..\..\modules\gpio.c</file>
-            <file>$PROJ_DIR$\..\..\modules\led.c</file>
-            <file>$PROJ_DIR$\..\..\modules\misc.c</file>
-            <file>$PROJ_DIR$\..\..\modules\pwm_out.c</file>
-            <file>$PROJ_DIR$\..\..\modules\button.c</file>
-            <file>$PROJ_DIR$\..\..\modules\usart.c</file>
-            <file>$PROJ_DIR$\Debug\Obj\logic.xcl</file>
-            <file>$TOOLKIT_DIR$\inc\c\DLib_Product_string.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\gpio.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pwr_ex.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_comp.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\pwm_out.o</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\cmsis\core_cm0.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pwr.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rcc.o</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_gpio_ex.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rtc.xcl</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_uart.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smartcard.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\systick.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_crc_ex.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smartcard_ex.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\pwm_in.o</file>
-            <file>$PROJ_DIR$\..\..\user\stm32f0xx_it.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pcd_ex.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tim.o</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_pwr_ex.h</file>
-            <file>$PROJ_DIR$\Debug\List\drone.map</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_usart_ex.o</file>
-            <file>$PROJ_DIR$\..\..\modules\adc.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_adc_ex.o</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_cortex.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rtc_ex.o</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_rcc_ex.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\pwm_in.xcl</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\Legacy\stm32_hal_legacy.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_uart_ex.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_spi_ex.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pcd.o</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_i2c_ex.h</file>
-            <file>$PROJ_DIR$\..\..\user\stm32f0xx_hal_conf.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_spi.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_iwdg.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\main.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smartcard_ex.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rcc_ex.__cstat.et</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_exti.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\adc.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\pwm_out.__cstat.et</file>
-            <file>$TOOLKIT_DIR$\inc\c\ycheck.h</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\cmsis\cmsis_iccarm.h</file>
-            <file>$TOOLKIT_DIR$\inc\c\stddef.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_spi_ex.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tim_ex.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\usart.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_cec.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_it.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\main.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_irda.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\led.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_can.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dma.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\pwm_out.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2s.xcl</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_def.h</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_tim_ex.h</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pcd.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_iwdg.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pcd_ex.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rcc_ex.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_dma.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_dac_ex.c</file>
             <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_flash_ex.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_exti.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_i2c_ex.c</file>
             <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pwr.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_smartcard_ex.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_spi.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pwr_ex.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_spi_ex.c</file>
             <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_tim.c</file>
             <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_tim_ex.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_tsc.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_gpio.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rcc.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_uart.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_uart_ex.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_usart_ex.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_wwdg.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pwr_ex.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_crc.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_smartcard_ex.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_comp.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_dma.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_flash.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_crc_ex.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_i2c_ex.c</file>
             <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_i2s.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_smbus.c</file>
             <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_irda.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_spi_ex.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_smartcard.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_flash.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pcd.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_i2c.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pcd_ex.c</file>
             <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rtc.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_cortex.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_iwdg.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rcc.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_dac.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_exti.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rcc_ex.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_cec.c</file>
             <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rtc_ex.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_usart.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_i2c.c</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_crc.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_crc.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pwr_ex.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rcc_ex.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_gpio.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\logic.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pcd_ex.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_gpio.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smartcard_ex.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rcc_ex.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_uart_ex.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_crc_ex.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2s.__cstat.et</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\cmsis\cmsis_compiler.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_can.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_cortex.o</file>
-            <file>$PROJ_DIR$\Debug\Exe\drone.out</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tsc.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dac.o</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_gpio.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_smartcard.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_smbus.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_spi.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\cmsis\stm32f0xx_hal_conf.h</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_adc_ex.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_adc.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_can.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal.c</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_adc_ex.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_it.xcl</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_exti.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_usart_ex.o</file>
             <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tim.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_spi_ex.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rcc_ex.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tim_ex.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pcd.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\main.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal.xcl</file>
             <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pcd_ex.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2s.xcl</file>
+            <file>$PROJ_DIR$\..\..\user\stm32f0xx_hal_conf.h</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_i2c_ex.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\usart.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_gpio.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_irda.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\led.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rcc_ex.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smartcard_ex.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rtc_ex.o</file>
+            <file>$TOOLKIT_DIR$\inc\c\ycheck.h</file>
             <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_spi.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pcd.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\main.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_spi_ex.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\adc.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\pwm_in.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_spi_ex.o</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\cmsis\cmsis_iccarm.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_cec.xcl</file>
+            <file>$TOOLKIT_DIR$\inc\c\stddef.h</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\Legacy\stm32_hal_legacy.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_spi.o</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\cmsis\core_cm0.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\led.xcl</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_flash.h</file>
+            <file>$PROJ_DIR$\..\..\modules\adc.h</file>
+            <file>$TOOLKIT_DIR$\inc\c\DLib_Product_string.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_comp.o</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_cortex.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\pwm_out.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pcd_ex.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\gpio.xcl</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_pwr_ex.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\pwm_in.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\pwm_out.__cstat.et</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tim.o</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_rcc_ex.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_iwdg.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pwr_ex.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pwr.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smartcard_ex.xcl</file>
+            <file>$PROJ_DIR$\..\..\user\stm32f0xx_it.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_uart_ex.xcl</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_usart.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_adc.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smartcard.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tim_ex.xcl</file>
+            <file>$PROJ_DIR$\Debug\List\drone.map</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_gpio_ex.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\systick.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pcd.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pwr_ex.xcl</file>
+            <file>$TOOLKIT_DIR$\inc\c\string.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\tim.o</file>
             <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smbus.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_usart_ex.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_cortex.__cstat.et</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_usart_ex.h</file>
+            <file>$TOOLKIT_DIR$\lib\m6M_tl.a</file>
+            <file>$PROJ_DIR$\Debug\Obj\usart.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\systick.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_flash_ex.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_crc_ex.__cstat.et</file>
+            <file>$TOOLKIT_DIR$\inc\c\yvals.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2c.__cstat.et</file>
+            <file>$PROJ_DIR$\..\..\modules\usart.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_flash_ex.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smartcard.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\drone.pbd</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2c_ex.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_gpio.o</file>
+            <file>$TOOLKIT_DIR$\inc\c\stdbool.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dma.__cstat.et</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_iwdg.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_usart.o</file>
+            <file>$PROJ_DIR$\..\..\modules\systick.h</file>
             <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_it.o</file>
             <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_irda.xcl</file>
             <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_pwr.h</file>
-            <file>$TOOLKIT_DIR$\inc\c\yvals.h</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_dac.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_dac_ex.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_cec.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_crc_ex.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\cmsis\stm32f0xx_hal_conf.h</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_adc.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_crc.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_comp.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_can.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_adc_ex.c</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_cortex.c</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tsc.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_usart.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rcc.xcl</file>
             <file>$PROJ_DIR$\Debug\Obj\startup_stm32f030x6.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dma.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_gpio.o</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_iwdg.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dac.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_crc_ex.__cstat.et</file>
             <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_wwdg.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tsc.__cstat.et</file>
-            <file>$TOOLKIT_DIR$\inc\c\stdbool.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pwr_ex.xcl</file>
-            <file>$PROJ_DIR$\..\..\modules\usart.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_usart.o</file>
             <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_rcc.h</file>
-            <file>$TOOLKIT_DIR$\inc\c\DLib_Config_Full.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_flash_ex.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rcc.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_usart.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dac_ex.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2c.__cstat.et</file>
-            <file>$PROJ_DIR$\..\..\modules\systick.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2c_ex.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_flash_ex.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tsc.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pcd_ex.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pwr_ex.__cstat.et</file>
             <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_exti.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_spi_ex.xcl</file>
             <file>$PROJ_DIR$\..\..\libs\stm32\cmsis\cmsis_version.h</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_tim_ex.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dma.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\pwm_out.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_crc.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2s.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smartcard_ex.__cstat.et</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_def.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_gpio.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_can.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_crc.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_crc_ex.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dac.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_cortex.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\logic.o</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\cmsis\cmsis_compiler.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_usart_ex.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_cortex.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rcc_ex.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dac_ex.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dac.xcl</file>
             <file>$PROJ_DIR$\..\..\modules\gpio.h</file>
-            <file>$TOOLKIT_DIR$\lib\m6M_tl.a</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_gpio.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dac.__cstat.et</file>
-            <file>$TOOLKIT_DIR$\inc\c\string.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2c_ex.xcl</file>
-            <file>$PROJ_DIR$\..\..\modules\logic.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_flash.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\drone.pbd</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_cec.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_uart_ex.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Exe\drone.out</file>
+            <file>$TOOLKIT_DIR$\inc\c\DLib_Config_Full.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_can.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_flash_ex.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2s.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\main.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_iwdg.__cstat.et</file>
+            <file>$PROJ_DIR$\..\..\modules\button.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rtc.o</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\system\stm32f0xx.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_uart_ex.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_spi.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_usart_ex.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\system_stm32f0xx.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_uart.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rcc.__cstat.et</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_dma.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_flash.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_exti.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_adc_ex.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\button.xcl</file>
+            <file>$PROJ_DIR$\..\..\modules\led.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\button.o</file>
+            <file>$PROJ_DIR$\..\..\modules\tim.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_uart.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_comp.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dma.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_it.__cstat.et</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_tim.h</file>
+            <file>$TOOLKIT_DIR$\lib\shb_l.a</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pwr.xcl</file>
+            <file>$PROJ_DIR$\..\..\modules\pwm_out.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pcd.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\system_stm32f0xx.__cstat.et</file>
+            <file>$TOOLKIT_DIR$\lib\dl6M_tlf.a</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2c.o</file>
             <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_flash.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\usart.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_usart.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_comp.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\pwm_in.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\tim.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smartcard.o</file>
             <file>$PROJ_DIR$\Debug\Obj\tim.xcl</file>
-            <file>$PROJ_DIR$\..\..\output\drone.hex</file>
-            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_usart_ex.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\usart.xcl</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2c.o</file>
             <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_dma_ex.h</file>
+            <file>$PROJ_DIR$\..\..\modules\pwm_in.h</file>
             <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rtc.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\pwm_in.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_crc.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tsc.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_wwdg.__cstat.et</file>
+            <file>$TOOLKIT_DIR$\lib\rt6M_tl.a</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_iwdg.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_flash.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dac.__cstat.et</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_gpio.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_cortex.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_comp.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2c.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2c_ex.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\usart.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_adc.__cstat.et</file>
             <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_adc.o</file>
-            <file>$PROJ_DIR$\Debug\Obj\systick.o</file>
+            <file>$PROJ_DIR$\..\..\modules\logic.h</file>
             <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_adc_ex.__cstat.et</file>
-            <file>$PROJ_DIR$\..\..\modules\pwm_in.h</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2c.xcl</file>
             <file>$PROJ_DIR$\Debug\Obj\systick.xcl</file>
-            <file>$TOOLKIT_DIR$\lib\dl6M_tlf.a</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_adc.__cstat.et</file>
-            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_crc.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_usart.xcl</file>
+            <file>$PROJ_DIR$\..\..\output\drone.hex</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_cec.__cstat.et</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_flash_ex.h</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_uart_ex.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_usart_ex.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\system\system_stm32f0xx.h</file>
+            <file>$TOOLKIT_DIR$\inc\c\stdio.h</file>
+            <file>$TOOLKIT_DIR$\inc\c\ysizet.h</file>
+            <file>$PROJ_DIR$\..\..\modules\pwm_out.c</file>
+            <file>$PROJ_DIR$\..\..\modules\tim.c</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dac_ex.__cstat.et</file>
+            <file>$PROJ_DIR$\..\..\modules\button.c</file>
+            <file>$TOOLKIT_DIR$\inc\c\DLib_Product.h</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_uart.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_tsc.c</file>
+            <file>$PROJ_DIR$\..\..\modules\systick.c</file>
+            <file>$PROJ_DIR$\..\..\modules\usart.c</file>
+            <file>$PROJ_DIR$\..\..\user\stm32f0xx_it.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\system\system_stm32f0xx.c</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smbus.xcl</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_adc_ex.h</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\system\stm32f030x6.h</file>
+            <file>$PROJ_DIR$\..\..\modules\logic.c</file>
+            <file>$PROJ_DIR$\Debug\Obj\system_stm32f0xx.o</file>
+            <file>$PROJ_DIR$\..\..\modules\misc.c</file>
+            <file>$PROJ_DIR$\..\..\modules\pwm_in.c</file>
+            <file>$PROJ_DIR$\..\..\modules\adc.c</file>
+            <file>$PROJ_DIR$\..\startup_stm32f030x6.s</file>
+            <file>$PROJ_DIR$\Debug\Obj\gpio.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_dac_ex.o</file>
+            <file>$PROJ_DIR$\..\..\modules\gpio.c</file>
+            <file>$PROJ_DIR$\..\..\user\main.c</file>
+            <file>$PROJ_DIR$\..\..\modules\led.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_wwdg.c</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_usart.c</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smartcard.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_wwdg.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\logic.xcl</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_uart.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\logic.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_crc_ex.o</file>
+            <file>$TOOLKIT_DIR$\inc\c\stdint.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rtc.xcl</file>
+            <file>$PROJ_DIR$\Debug\Obj\gpio.__cstat.et</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_i2c.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_irda.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rtc_ex.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_exti.o</file>
+            <file>$PROJ_DIR$\..\..\modules\misc.h</file>
+            <file>$TOOLKIT_DIR$\inc\c\iccarm_builtin.h</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_adc.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rcc.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tim.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\adc.xcl</file>
+            <file>$TOOLKIT_DIR$\inc\c\DLib_Defaults.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_cec.o</file>
+            <file>$PROJ_DIR$\..\stm32f030x6_flash.icf</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_uart.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_i2c_ex.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_tim_ex.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_can.__cstat.et</file>
+            <file>$PROJ_DIR$\..\..\libs\stm32\drivers\inc\stm32f0xx_hal_uart_ex.h</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_smbus.o</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_pwr.__cstat.et</file>
+            <file>$PROJ_DIR$\Debug\Obj\stm32f0xx_hal_rtc_ex.xcl</file>
         </outputs>
         <file>
             <name>[ROOT_NODE]</name>
             <outputs>
                 <tool>
                     <name>ILINK</name>
-                    <file> 204 116</file>
+                    <file> 160 96</file>
                 </tool>
             </outputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\user\stm32f0xx_it.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_dac_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 215</file>
+                    <file> 251</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 147</file>
+                    <file> 156</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 7</file>
+                    <file> 232</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 112 117 131 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 137 16 277 121 44 61 75 18 47 130 217 115</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\modules\adc.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_flash_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 138</file>
+                    <file> 113</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 67</file>
+                    <file> 163</file>
+                </tool>
+                <tool>
+                    <name>__cstat</name>
+                    <file> 108</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274 119 21 36 56</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\modules\pwm_in.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pwr.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 111</file>
+                    <file> 88</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 124</file>
+                    <file> 191</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 269</file>
+                    <file> 286</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274 282 239 56</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\startup_stm32f030x6.s</name>
-            <outputs>
-                <tool>
-                    <name>AARM</name>
-                    <file> 231</file>
-                </tool>
-            </outputs>
-        </file>
-        <file>
-            <name>$PROJ_DIR$\..\..\modules\logic.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pwr_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 193</file>
+                    <file> 87</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 95</file>
+                    <file> 100</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 79</file>
+                    <file> 134</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274 261 239 282 255 30</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\modules\tim.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_spi_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 270</file>
+                    <file> 64</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 272</file>
+                    <file> 136</file>
+                </tool>
+                <tool>
+                    <name>__cstat</name>
+                    <file> 61</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274 36 21</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\modules\systick.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_tim.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 280</file>
+                    <file> 84</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 284</file>
+                    <file> 41</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 108</file>
+                    <file> 275</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274 250 239</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\user\main.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_tim_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 31</file>
+                    <file> 43</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 148</file>
+                    <file> 95</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 134</file>
+                    <file> 282</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 131 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 137 16 277 121 44 61 75 18 47 130 217 115 21 19 239 119 36 40 250 241 30 282 255 261 56</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\system\system_stm32f0xx.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_crc.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 58</file>
+                    <file> 141</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 14</file>
+                    <file> 147</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 20</file>
+                    <file> 203</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 25 72 101 70 140 218 39 244 53 254 201 141 43 66 117 223 243 155 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\modules\gpio.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_smartcard_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 41</file>
+                    <file> 56</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 97</file>
+                    <file> 89</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 45</file>
+                    <file> 143</file>
                 </tool>
             </outputs>
-            <inputs>
-                <tool>
-                    <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274 255 239</file>
-                </tool>
-            </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\modules\led.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_comp.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 150</file>
+                    <file> 75</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 82</file>
+                    <file> 186</file>
+                </tool>
+                <tool>
+                    <name>__cstat</name>
+                    <file> 212</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274 21</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\modules\pwm_out.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_dma.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 100</file>
+                    <file> 187</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 153</file>
+                    <file> 139</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 139</file>
+                    <file> 119</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274 30 56</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\modules\button.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_flash.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 1</file>
+                    <file> 197</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 0</file>
+                    <file> 178</file>
+                </tool>
+                <tool>
+                    <name>__cstat</name>
+                    <file> 208</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 19 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274 239 56</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\modules\usart.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_crc_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 266</file>
+                    <file> 262</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 275</file>
+                    <file> 148</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 145</file>
+                    <file> 109</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274 241 56 259 96</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pcd.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_i2c_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 129</file>
+                    <file> 116</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 13</file>
+                    <file> 214</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 211</file>
+                    <file> 281</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_iwdg.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_i2s.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 133</file>
+                    <file> 164</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 24</file>
+                    <file> 48</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 2</file>
+                    <file> 142</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pcd_ex.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_irda.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 209</file>
+                    <file> 53</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 113</file>
+                    <file> 124</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 194</file>
+                    <file> 268</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rcc_ex.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pcd.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 191</file>
+                    <file> 99</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 197</file>
+                    <file> 193</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 136</file>
+                    <file> 44</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_dma.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_i2c.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 17</file>
+                    <file> 196</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 152</file>
+                    <file> 213</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 232</file>
+                    <file> 111</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_flash_ex.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pcd_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 245</file>
+                    <file> 47</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 29</file>
+                    <file> 78</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 252</file>
+                    <file> 133</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_exti.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rtc.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 50</file>
+                    <file> 168</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 35</file>
+                    <file> 265</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 253</file>
+                    <file> 201</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_i2c_ex.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_cortex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 251</file>
+                    <file> 150</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 260</file>
+                    <file> 211</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 63</file>
+                    <file> 154</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pwr.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_iwdg.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 102</file>
+                    <file> 86</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 28</file>
+                    <file> 207</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 46</file>
+                    <file> 166</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_smartcard_ex.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rcc.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 135</file>
+                    <file> 274</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 110</file>
+                    <file> 128</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 196</file>
+                    <file> 176</file>
                 </tool>
             </outputs>
+            <inputs>
+                <tool>
+                    <name>ICCARM</name>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
+                </tool>
+            </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_spi.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_dac.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 132</file>
+                    <file> 149</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 33</file>
+                    <file> 157</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 210</file>
+                    <file> 209</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_tim.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_exti.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 114</file>
+                    <file> 270</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 207</file>
+                    <file> 179</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 68</file>
+                    <file> 135</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_tim_ex.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rcc_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 144</file>
+                    <file> 42</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 80</file>
+                    <file> 155</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 54</file>
+                    <file> 55</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_tsc.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_cec.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 205</file>
+                    <file> 278</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 11</file>
+                    <file> 66</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 238</file>
+                    <file> 223</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_gpio.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rtc_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 233</file>
+                    <file> 57</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 195</file>
+                    <file> 287</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 192</file>
+                    <file> 269</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rcc.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_gpio.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 103</file>
+                    <file> 117</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 246</file>
+                    <file> 145</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 34</file>
+                    <file> 52</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_uart.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_smartcard.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 69</file>
+                    <file> 114</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 3</file>
+                    <file> 94</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 6</file>
+                    <file> 257</file>
                 </tool>
             </outputs>
-            <inputs>
-                <tool>
-                    <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
-                </tool>
-            </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_uart_ex.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_smbus.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 9</file>
+                    <file> 285</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 127</file>
+                    <file> 241</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 198</file>
+                    <file> 103</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_usart_ex.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_spi.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 118</file>
+                    <file> 69</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 26</file>
+                    <file> 171</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 213</file>
+                    <file> 59</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_wwdg.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_adc_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 237</file>
+                    <file> 37</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 83</file>
+                    <file> 180</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 22</file>
+                    <file> 219</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_pwr_ex.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_adc.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 98</file>
+                    <file> 217</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 240</file>
+                    <file> 93</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 190</file>
+                    <file> 216</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_i2s.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_can.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 4</file>
+                    <file> 146</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 154</file>
+                    <file> 162</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 200</file>
+                    <file> 283</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_smbus.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 87</file>
+                    <file> 175</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 60</file>
+                    <file> 46</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 212</file>
+                    <file> 264</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_irda.c</name>
+            <name>$PROJ_DIR$\Debug\Exe\drone.out</name>
             <outputs>
                 <tool>
-                    <name>ICCARM</name>
-                    <file> 149</file>
-                </tool>
-                <tool>
-                    <name>BICOMP</name>
-                    <file> 216</file>
+                    <name>ILINK</name>
+                    <file> 96</file>
                 </tool>
                 <tool>
-                    <name>__cstat</name>
-                    <file> 49</file>
+                    <name>OBJCOPY</name>
+                    <file> 222</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
-                    <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <name>ILINK</name>
+                    <file> 279 62 183 250 54 151 165 81 77 129 175 217 37 146 278 75 150 141 262 149 251 187 270 197 113 117 196 116 164 53 86 99 47 88 87 274 42 168 57 114 56 285 69 64 84 43 132 280 170 121 40 130 123 245 107 102 215 190 206 105 195</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_spi_ex.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_uart_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 128</file>
+                    <file> 170</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 208</file>
+                    <file> 91</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 143</file>
+                    <file> 159</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_smartcard.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_usart_ex.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 271</file>
+                    <file> 40</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 107</file>
+                    <file> 172</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 48</file>
+                    <file> 153</file>
                 </tool>
             </outputs>
+            <inputs>
+                <tool>
+                    <name>ICCARM</name>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
+                </tool>
+            </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_flash.c</name>
+            <name>$PROJ_DIR$\..\..\modules\pwm_out.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 265</file>
+                    <file> 77</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 37</file>
+                    <file> 140</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 262</file>
+                    <file> 82</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104 192 228</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rtc.c</name>
+            <name>$PROJ_DIR$\..\..\modules\tim.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 32</file>
+                    <file> 102</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 105</file>
-                </tool>
-                <tool>
-                    <name>__cstat</name>
-                    <file> 278</file>
+                    <file> 198</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104 184 182</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_rtc_ex.c</name>
+            <name>$PROJ_DIR$\..\..\modules\button.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 122</file>
+                    <file> 183</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 74</file>
-                </tool>
-                <tool>
-                    <name>__cstat</name>
-                    <file> 51</file>
+                    <file> 181</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 167 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104 118 228</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_usart.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_uart.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 242</file>
+                    <file> 280</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 267</file>
+                    <file> 185</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 247</file>
+                    <file> 174</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_i2c.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_tsc.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 276</file>
+                    <file> 132</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 283</file>
+                    <file> 204</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 249</file>
+                    <file> 126</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\Debug\Exe\drone.out</name>
+            <name>$PROJ_DIR$\..\..\modules\systick.c</name>
             <outputs>
                 <tool>
-                    <name>ILINK</name>
-                    <file> 116</file>
+                    <name>ICCARM</name>
+                    <file> 107</file>
                 </tool>
                 <tool>
-                    <name>OBJCOPY</name>
-                    <file> 273</file>
+                    <name>BICOMP</name>
+                    <file> 220</file>
+                </tool>
+                <tool>
+                    <name>__cstat</name>
+                    <file> 98</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
-                    <name>ILINK</name>
-                    <file> 62 138 1 41 150 193 31 111 100 231 15 279 120 202 55 99 203 188 109 206 65 17 50 265 245 233 276 251 4 149 133 129 209 102 98 103 191 32 122 271 135 87 132 128 114 144 205 69 9 242 118 237 215 58 280 270 266 27 12 256 285</file>
+                    <name>ICCARM</name>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104 122 118</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_dac.c</name>
+            <name>$PROJ_DIR$\..\..\modules\usart.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 206</file>
+                    <file> 215</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 235</file>
+                    <file> 106</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 258</file>
+                    <file> 51</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104 112 228 101 74</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_dac_ex.c</name>
+            <name>$PROJ_DIR$\..\..\user\stm32f0xx_it.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 65</file>
+                    <file> 123</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 248</file>
+                    <file> 38</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 59</file>
+                    <file> 188</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 90 83 49 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 39 177 199 76 273 242 72 224 267 50 125 80</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_cec.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\system\system_stm32f0xx.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 55</file>
+                    <file> 245</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 146</file>
+                    <file> 173</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 264</file>
+                    <file> 194</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 169 243 70 263 58 110 277 161 234 137 152 65 272 227 83 32 131 144 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_crc_ex.c</name>
+            <name>$PROJ_DIR$\..\..\modules\logic.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 109</file>
+                    <file> 151</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 199</file>
+                    <file> 259</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 236</file>
+                    <file> 261</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104 218 118 200 158 192</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal.c</name>
+            <name>$PROJ_DIR$\..\..\modules\pwm_in.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 15</file>
+                    <file> 81</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 126</file>
+                    <file> 63</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 38</file>
+                    <file> 202</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104 200 118 228</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_adc.c</name>
+            <name>$PROJ_DIR$\..\..\modules\adc.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 279</file>
+                    <file> 62</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 76</file>
-                </tool>
-                <tool>
-                    <name>__cstat</name>
-                    <file> 286</file>
+                    <file> 276</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104 73 182 184 228</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_crc.c</name>
+            <name>$PROJ_DIR$\..\startup_stm32f030x6.s</name>
+            <outputs>
+                <tool>
+                    <name>AARM</name>
+                    <file> 129</file>
+                </tool>
+            </outputs>
+        </file>
+        <file>
+            <name>$PROJ_DIR$\..\..\modules\gpio.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 188</file>
+                    <file> 250</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 189</file>
+                    <file> 79</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 287</file>
+                    <file> 266</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104 158 118</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_comp.c</name>
+            <name>$PROJ_DIR$\..\..\user\main.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 99</file>
+                    <file> 165</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 5</file>
+                    <file> 45</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 268</file>
+                    <file> 60</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 49 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 39 177 199 76 273 242 72 224 267 50 125 80 182 167 118 73 184 271 122 112 192 200 158 218 228</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_can.c</name>
+            <name>$PROJ_DIR$\..\..\modules\led.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 202</file>
+                    <file> 54</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 151</file>
-                </tool>
-                <tool>
-                    <name>__cstat</name>
-                    <file> 42</file>
+                    <file> 71</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104 182</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_adc_ex.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_wwdg.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 120</file>
+                    <file> 130</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 8</file>
+                    <file> 258</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 281</file>
+                    <file> 205</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <file>
-            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_cortex.c</name>
+            <name>$PROJ_DIR$\..\..\libs\stm32\drivers\src\stm32f0xx_hal_usart.c</name>
             <outputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 203</file>
+                    <file> 121</file>
                 </tool>
                 <tool>
                     <name>BICOMP</name>
-                    <file> 10</file>
+                    <file> 221</file>
                 </tool>
                 <tool>
                     <name>__cstat</name>
-                    <file> 214</file>
+                    <file> 127</file>
                 </tool>
             </outputs>
             <inputs>
                 <tool>
                     <name>ICCARM</name>
-                    <file> 117 223 243 155 25 72 101 70 140 218 39 244 53 254 201 141 43 66 125 142 57 123 257 104 16 277 121 44 61 75 18 234 217 115 23 156 106 52 86 274</file>
+                    <file> 83 32 131 144 169 243 70 263 58 110 277 161 234 137 152 65 272 227 68 67 229 85 210 97 177 199 76 273 242 72 224 120 125 80 189 138 260 284 92 104</file>
                 </tool>
             </inputs>
         </file>
         <forcedrebuild>
-            <name>$PROJ_DIR$\..\..\modules\adc.c</name>
+            <name>$PROJ_DIR$\..\..\modules\tim.c</name>
             <tool>C-STAT</tool>
         </forcedrebuild>
         <forcedrebuild>
-            <name>$PROJ_DIR$\..\..\modules\tim.c</name>
+            <name>$PROJ_DIR$\..\..\modules\button.c</name>
             <tool>C-STAT</tool>
         </forcedrebuild>
         <forcedrebuild>
-            <name>$PROJ_DIR$\..\..\modules\led.c</name>
+            <name>$PROJ_DIR$\..\..\modules\adc.c</name>
             <tool>C-STAT</tool>
         </forcedrebuild>
         <forcedrebuild>
-            <name>$PROJ_DIR$\..\..\modules\button.c</name>
+            <name>$PROJ_DIR$\..\..\modules\led.c</name>
             <tool>C-STAT</tool>
         </forcedrebuild>
     </configuration>

ファイルの差分が大きいため隠しています
+ 3 - 3
project/settings/muvie_string_controller.wsdt


+ 4 - 0
user/main.c

@@ -30,6 +30,7 @@ int main()
 
     wdt_init();
 */    
+    channel_init();
     led_init();
     adc_init();
     tim_init();
@@ -47,6 +48,9 @@ int main()
     timer_AddFunction(10, adc_task);
     timer_AddFunction(10, button_run);
     
+    bool foo;
+    foo = but_is_string();
+    
     while(1) 
     {
         timer_Main();

この差分においてかなりの量のファイルが変更されているため、一部のファイルを表示していません