-
Notifications
You must be signed in to change notification settings - Fork 12
/
sitemap.xml
1079 lines (1079 loc) · 37.2 KB
/
sitemap.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2012/01/07/web-new-look/</loc>
<lastmod>2015-10-03T10:04:54+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2013/10/11/plugins-v0.5.5.201310111213-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2013/10/16/plugins-v1.1.0-201310161930-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2013/10/19/plugins-v1.1.1-201310191701-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2013/10/21/plugins-v1.1.2-201310210535-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2013/10/22/plugins-v0.5.5.201310221100-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2013/10/29/plugins-v1.1.3-201310290722-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2013/10/30/plugins-v1.1.4-201310301732-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2013/11/10/plugins-v1.1.5-201311101919-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2013/11/22/plugins-v1.1.6-201311220955-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2013/12/22/plugins-v1.1.7-201312221905-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2013/12/24/plugins-v1.1.7-201312241058-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/01/11/plugins-v1.8.1-201401111229-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/01/22/sourceforge-featured-projects-january-2014/</loc>
<lastmod>2015-10-03T10:04:54+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/02/14/plugins-v2.1.1-201402140758-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/02/18/plugins-v2.1.2-201402180751-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/04/12/plugins-v2.2.1-201404120702-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/04/24/plugins-v2.2.2-201404240550-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/07/04/site-statistics/</loc>
<lastmod>2015-10-03T10:04:54+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/07/12/plugins-v2.3.1-201407120554-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/07/17/arm-connected-community-article/</loc>
<lastmod>2015-10-03T10:04:54+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/07/19/plugins-v2.3.2-201407190818-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/07/19/plugins-v2.3.2-201407190854-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/07/22/projects-week-july-14-2014/</loc>
<lastmod>2017-02-04T13:44:35+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/10/14/plugins-v2.4.1-201410142110-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/11/26/plugins-v2.4.2-201411261616-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/12/02/windows-build-tools-v2.0-20141202-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/12/15/debugging-topics-added-faq-page/</loc>
<lastmod>2015-10-03T10:04:54+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2014/12/19/plugins-v2.5.1-201412191510-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/01/19/openocd-v0.8.0-20150119-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/01/21/windows-build-tools-v2.1-20150121-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/01/23/windows-build-tools-v2.2-20150123-released/</loc>
<lastmod>2018-06-04T19:50:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/01/24/windows-build-tools-v2.3-20150124-released/</loc>
<lastmod>2018-06-04T19:50:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/01/31/openocd-v0.8.0-20150131-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/02/28/plugins-v2.6.1-201502281154-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/03/20/openocd-v0.8.0-20150320-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/03/20/openocd-v0.9.0-20150320-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/03/21/plugins-v2.7.1-201503211846-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/03/21/windows-build-tools-v2.4-20150321-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/03/24/openocd-v0.8.0-20150324-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/03/24/openocd-v0.9.0-20150324-dev-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/03/24/windows-build-tools-v2.4-20150324-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/04/04/qemu-v2-2-92-20150404-released/</loc>
<lastmod>2019-09-30T22:30:24+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/04/06/plugins-v2.8.1-201504061754-released/</loc>
<lastmod>2018-06-04T19:50:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/05/19/openocd-v0.9.0-20150519-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/07/15/windows-build-tools-v2.6-20150715-released/</loc>
<lastmod>2018-06-04T19:50:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/08/01/plugins-v2.9.1-201508011813-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/08/02/qemu-v2-3-50-20150801-released/</loc>
<lastmod>2018-06-04T19:50:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/08/04/qemu-v2-3-50-20150804-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/08/05/qemu-v2-3-50-20150805-released/</loc>
<lastmod>2018-06-04T19:50:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/08/07/plugins-v2.9.2-201508071246-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/08/16/qemu-v2-3-50-20150816-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/08/19/plugins-v2.9.3-201508190739-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/09/14/web-new-look/</loc>
<lastmod>2017-09-29T09:53:57+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/09/29/arm-connected-community-article/</loc>
<lastmod>2015-10-03T10:04:54+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/10/28/openocd-v0.10.0-20151028-dev-released/</loc>
<lastmod>2017-10-14T22:57:19+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/10/29/qemu-v2-4-50-20151029-released/</loc>
<lastmod>2017-10-14T22:57:19+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/10/29/plugins-v2.10.1-201510291730-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/11/06/plugins-v2.10.2-201511061603-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/11/17/arm-connected-community-article/</loc>
<lastmod>2015-12-09T08:54:14+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/12/08/arm-connected-community-article/</loc>
<lastmod>2015-12-09T14:20:14+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2015/12/17/plugins-v2.11.1-201512141335-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/01/11/openocd-v0.10.0-201601101000-dev-released/</loc>
<lastmod>2017-10-14T22:57:19+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/02/09/plugins-v2.11.2-201602091039-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/02/10/plugins-v2.11.3-201602101653-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/04/03/arm-connected-community-article/</loc>
<lastmod>2016-04-04T19:10:59+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/04/19/plugins-v2.12.1-201604190915-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/06/21/plugins-v3.1.1-201606210758-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/07/28/qemu-v2-6-0-20160728-released/</loc>
<lastmod>2017-10-14T22:57:19+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/10/28/windows-build-tools-v2.7-20161028-released/</loc>
<lastmod>2017-10-14T22:57:19+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/10/28/openocd-v0-10-0-20161028-dev-released/</loc>
<lastmod>2017-10-14T22:57:19+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/10/29/qemu-v2-7-0-20161029-released/</loc>
<lastmod>2018-05-23T16:08:06+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/11/22/windows-build-tools-v2-8-20161122-released/</loc>
<lastmod>2018-01-03T20:35:46+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/11/28/qemu-v2-7-0-20161128-released/</loc>
<lastmod>2018-05-23T16:08:06+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/12/02/plugins-install-issue/</loc>
<lastmod>2017-10-14T22:57:19+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2016/12/27/qemu-v2-8-0-20161227-released/</loc>
<lastmod>2018-05-23T16:08:06+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/01/14/plugins-v3.2.1-201701141320-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/01/24/openocd-v0-10-0-20170124-released/</loc>
<lastmod>2017-10-14T22:57:19+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/01/26/sourceforge-5m-downloads/</loc>
<lastmod>2017-01-26T23:35:14+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/01/29/plugins-install-issue/</loc>
<lastmod>2017-10-14T22:57:19+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/02/25/plugins-v3.3.1-201702251311-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/04/19/openocd-v0-10-0-20170418-released/</loc>
<lastmod>2017-10-14T22:57:19+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/04/25/plugins-v3.4.1-201704251808-released/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/05/02/sourceforge-to-bintray-migration/</loc>
<lastmod>2017-09-29T10:28:44+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/06/29/windows-build-tools-v2-9-20170629-released/</loc>
<lastmod>2018-06-04T19:50:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/07/02/riscv-none-gcc-v7-1-1-1-20170702-released/</loc>
<lastmod>2019-04-23T17:13:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/07/09/sourceforge-to-netlify-migration/</loc>
<lastmod>2017-07-11T12:37:33+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/07/11/plugins-v4.1.1-201707111115-released/</loc>
<lastmod>2018-04-25T17:56:43+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/08/26/openocd-v0-10-0-3-20170826-dev-released/</loc>
<lastmod>2017-11-10T12:56:24+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/09/13/riscv-none-gcc-v7-1-1-2-20170912-released/</loc>
<lastmod>2019-04-23T17:13:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/10/04/openocd-v0-10-0-4-20171004-dev-released/</loc>
<lastmod>2017-11-10T12:56:24+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/11/09/riscv-none-gcc-v7-2-0-1-20171109-released/</loc>
<lastmod>2019-04-23T17:13:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/11/10/openocd-v0-10-0-5-20171110-released/</loc>
<lastmod>2017-11-10T13:01:39+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2017/11/10/plugins-v4.2.1-201711101735-released/</loc>
<lastmod>2018-01-05T17:19:26+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/01/03/windows-build-tools-v2-10-20180103-released/</loc>
<lastmod>2018-06-04T19:50:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/01/10/plugins-v4.3.1-201801092051-released/</loc>
<lastmod>2018-01-10T12:24:48+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/01/12/openocd-v0-10-0-6-20180112-released/</loc>
<lastmod>2018-01-12T15:58:48+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/01/12/riscv-none-gcc-v7-2-0-2-20180111-released/</loc>
<lastmod>2019-04-23T17:13:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/01/23/openocd-v0-10-0-7-20180123-released/</loc>
<lastmod>2018-07-25T10:39:24+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/01/25/plugins-v4.3.2-201801250917-released/</loc>
<lastmod>2018-01-30T15:23:56+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/03/31/arm-none-eabi-gcc-v6-3-1-1-1-released/</loc>
<lastmod>2019-04-23T17:13:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/04/01/arm-none-eabi-gcc-v7-2-1-1-1-released/</loc>
<lastmod>2019-04-23T17:13:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/04/19/plugins-v4.3.3-201804191501-released/</loc>
<lastmod>2018-04-19T18:04:31+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/04/28/windows-build-tools-v2-11-20180428-released/</loc>
<lastmod>2019-01-18T13:36:21+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/05/06/riscv-none-gcc-v7-2-0-3-20180506-released/</loc>
<lastmod>2019-04-23T17:13:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/05/13/openocd-v0-10-0-8-20180512-released/</loc>
<lastmod>2018-05-13T09:32:19+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/05/23/qemu-v2-8-0-3-20180523-released/</loc>
<lastmod>2019-04-23T17:13:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/06/06/riscv-none-gcc-v7-2-0-4-20180606-released/</loc>
<lastmod>2019-04-23T17:13:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/07/21/plugins-v4.4.1-201807211108-released/</loc>
<lastmod>2018-08-27T15:42:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/07/24/arm-none-eabi-gcc-v7-3-1-1-1-released/</loc>
<lastmod>2019-04-23T17:13:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/08/30/plugins-v4.4.2-201809300659-released/</loc>
<lastmod>2018-10-16T20:14:40+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/10/16/openocd-v0-10-0-9-20181016-released/</loc>
<lastmod>2018-10-20T06:55:25+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/10/19/riscv-none-gcc-v8-1-0-2-20181019-released/</loc>
<lastmod>2019-04-23T17:13:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2018/10/20/openocd-v0-10-0-10-20181020-released/</loc>
<lastmod>2019-01-18T12:32:19+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/01/01/plugins-v4.5.1-201901011632-released/</loc>
<lastmod>2019-01-01T20:03:42+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/01/03/arm-none-eabi-gcc-v8-2-1-1-1-released/</loc>
<lastmod>2019-05-13T06:17:51+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/01/18/openocd-v0-10-0-11-20190118-released/</loc>
<lastmod>2019-01-21T15:14:38+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/01/19/arm-none-eabi-gcc-v8-2-1-1-2-released/</loc>
<lastmod>2019-05-13T06:17:51+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/02/02/arm-none-eabi-gcc-v8-2-1-1-3-released/</loc>
<lastmod>2019-05-13T06:17:51+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/02/11/qemu-v2-8-0-4-20190211-released/</loc>
<lastmod>2019-04-23T17:13:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/02/14/arm-none-eabi-gcc-v8-2-1-1-4-released/</loc>
<lastmod>2019-05-13T06:17:51+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/04/22/windows-build-tools-v2-12-20190422-released/</loc>
<lastmod>2019-04-23T17:44:53+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/04/22/openocd-v0-10-0-12-20190422-released/</loc>
<lastmod>2019-04-23T17:44:53+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/04/24/qemu-v2-8-0-5-20190424-released/</loc>
<lastmod>2019-04-24T20:01:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/04/25/riscv-none-gcc-v8-2-0-2-1-20190425-released/</loc>
<lastmod>2019-05-22T13:01:45+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/04/26/arm-none-eabi-gcc-v8-2-1-1-5-released/</loc>
<lastmod>2019-05-13T06:17:51+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/05/10/arm-none-eabi-gcc-v8-2-1-1-6-released/</loc>
<lastmod>2019-05-24T15:56:35+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/05/17/qemu-v2-8-0-6-20190517-released/</loc>
<lastmod>2019-05-17T16:05:35+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/05/21/riscv-none-gcc-v8-2-0-2-2-20190521-released/</loc>
<lastmod>2019-05-22T13:59:30+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/05/24/arm-none-eabi-gcc-v8-2-1-1-7-released/</loc>
<lastmod>2019-05-24T16:15:17+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/09/23/plugins-v4.6.1-201909231407-released/</loc>
<lastmod>2019-09-24T14:15:38+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/09/25/new-forums/</loc>
<lastmod>2019-09-25T20:28:39+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2019/11/06/plugins-v4.7.1-201911052135-released/</loc>
<lastmod>2020-01-27T12:09:59+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2020/01/27/plugins-v4.7.2-202001271244-released/</loc>
<lastmod>2020-01-27T13:32:53+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/2020/07/28/plugins-v5.1.1-202007271621-released/</loc>
<lastmod>2020-07-28T15:12:55+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/about/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/articles/arm-com-2014-07/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/articles/arm-com-2015-09/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/articles/arm-com-2015-11/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/articles/arm-com-2015-12-09/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/articles/arm-com-2016-04-03/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/articles/arm-com-2016-06-23/</loc>
<lastmod>2016-06-25T14:35:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/arch/riscv/arty-jtag-adapter/</loc>
<lastmod>2017-09-15T08:41:06+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/arch/riscv/arty-reflash/</loc>
<lastmod>2019-03-27T19:53:11+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/eclipse/project/assign-device/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/tutorials/blinky-arm/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/build-binaries-prerequisites-xbb/</loc>
<lastmod>2018-06-04T19:50:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/build-binaries-prerequisites/</loc>
<lastmod>2018-06-04T19:50:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/build-prerequisites/</loc>
<lastmod>2019-09-23T15:15:35+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/qemu/build-procedure/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/toolchain/arm/build-procedure/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/openocd/build-procedure/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/build-procedure/</loc>
<lastmod>2019-09-23T15:15:35+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/windows-build-tools/build-procedure/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/toolchain/riscv/build-procedure/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/change-log/2013/</loc>
<lastmod>2015-10-03T10:04:54+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/change-log/2014/</loc>
<lastmod>2015-10-03T18:07:41+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/qemu/change-log/2014/</loc>
<lastmod>2015-10-03T10:04:54+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/change-log/2015/</loc>
<lastmod>2016-02-09T11:19:51+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/change-log/2016/</loc>
<lastmod>2017-02-25T15:14:49+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/change-log/2017/</loc>
<lastmod>2018-01-10T11:43:32+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/change-log/2018/</loc>
<lastmod>2019-01-01T17:45:48+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/change-log/2019/</loc>
<lastmod>2020-01-27T11:56:41+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/change-log/v05x/</loc>
<lastmod>2017-02-04T13:44:35+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/toolchain/riscv/change-log/</loc>
<lastmod>2019-09-30T22:08:09+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/toolchain/arm/change-log/</loc>
<lastmod>2019-09-30T22:08:09+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/change-log/</loc>
<lastmod>2020-07-28T14:34:27+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/openocd/change-log/</loc>
<lastmod>2019-09-30T22:08:09+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/windows-build-tools/change-log/</loc>
<lastmod>2020-07-28T14:34:43+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/qemu/change-log/</loc>
<lastmod>2019-09-30T22:08:09+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/contribute/</loc>
<lastmod>2017-07-11T21:50:40+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/templates/cortexm/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/</loc>
<lastmod>2019-09-25T17:07:25+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/development-environment/</loc>
<lastmod>2019-09-23T15:15:35+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/plugins/download/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/openocd/download/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/windows-build-tools/download/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/qemu/download/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/downloads/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/eclipse/debugging-options/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/eclipse/runtime-preferences/</loc>
<lastmod>2015-10-03T17:33:27+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/eclipse/tips-tricks/</loc>
<lastmod>2015-10-03T17:33:27+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/extension/ilg.gnumcueclipse.debug.core.cprojectextra/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/extension/ilg.gnumcueclipse.debug.core.svdpath/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/support/faq/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/plugins/features/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/support/forum/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/arch/riscv/ftdi-jtag-drivers/</loc>
<lastmod>2018-06-04T19:50:15+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/advanced/headless-builds/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/tutorials/hello-arm/</loc>
<lastmod>2020-08-16T18:15:47+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/blog/</loc>
<lastmod>2018-01-10T12:25:30+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/toolchain/riscv/install/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/openocd/install/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/windows-build-tools/install/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/debug/install/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/toolchain/arm/install/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/plugins/install/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/qemu/install/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/install/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/j-link-stm32-boards/</loc>
<lastmod>2017-07-17T21:16:33+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/debug/jlink/install/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/debug/jlink/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/templates/klxx/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/support/known-issues/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/debug/openocd/riscv/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/debug/openocd/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/qemu/options/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/toolchain/arm/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/qemu/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/templates/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/support/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/windows-build-tools/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/arch/riscv/</loc>
<lastmod>2019-12-27T09:48:01+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/debug/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/openocd/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/toolchain/riscv/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/plugins/packs-manager/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/pad-file/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/toolchain/path/</loc>
<lastmod>2018-04-25T18:00:12+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/finance/paypal-success/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/debug/peripheral-registers/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/licenses/plug-ins/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/eclipse/project/portability/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/preferences/ilg.gnuarmeclipse.debug.gdbjtag.jlink/</loc>
<lastmod>2015-10-03T10:04:54+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/preferences/ilg.gnuarmeclipse.debug.gdbjtag.openocd/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/preferences/ilg.gnuarmeclipse.debug.gdbjtag.qemu/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/preferences/ilg.gnuarmeclipse.managedbuild.cross/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/preferences/ilg.gnumcueclipse.debug.gdbjtag.jlink/</loc>
<lastmod>2018-04-25T18:46:52+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/preferences/ilg.gnumcueclipse.debug.gdbjtag.openocd/</loc>
<lastmod>2018-04-25T18:46:52+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/preferences/ilg.gnumcueclipse.debug.gdbjtag.qemu/</loc>
<lastmod>2018-04-25T18:46:52+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/preferences/ilg.gnumcueclipse.managedbuild.cross.riscv/</loc>
<lastmod>2017-05-12T15:01:31+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/eclipse/workspace/preferences/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/arch/riscv/programmer/</loc>
<lastmod>2018-04-01T08:35:14+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/openocd/publish-procedure/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/windows-build-tools/publish-procedure/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/qemu/publish-procedure/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/publish-procedure/</loc>
<lastmod>2020-01-27T12:09:28+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/toolchain/arm/publish-procedure/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/toolchain/riscv/publish-procedure/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/debug/qemu/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/redirected/</loc>
<lastmod>2017-07-01T21:18:30+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/openocd/releases/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/qemu/releases/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/windows-build-tools/releases/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/toolchain/arm/releases/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/toolchain/riscv/releases/</loc>
<lastmod>2020-10-12T08:58:23+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/developer/releases/</loc>
<lastmod>2017-07-01T21:06:50+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/support/sourceforge/</loc>
<lastmod>2016-02-04T07:16:24+00:00</lastmod>
</url>
<url>
<loc>http://gnu-mcu-eclipse.github.io/finance/sponsorship/</loc>