forked from CommunityGD32Cores/ArduinoCore-GD32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
boards.txt
1346 lines (1295 loc) · 95 KB
/
boards.txt
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
# See: https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5-3rd-party-Hardware-specification
menu.pnum=Board part number
menu.upload_method=Upload method
menu.opt=Optimize
menu.usb=USB support
##################################################
# Generic GD32E23x
gd_generic_gd32e23x.name=GD32E23x Generic series
gd_generic_gd32e23x.build.core=arduino
gd_generic_gd32e23x.build.board=gd_generic_gd32e23x
gd_generic_gd32e23x.build.mcu=cortex-m23
gd_generic_gd32e23x.build.series=GD32E23x
gd_generic_gd32e23x.build.vid=0xdead
gd_generic_gd32e23x.build.pid=0xbeef
gd_generic_gd32e23x.build.usb_product="USB Test"
gd_generic_gd32e23x.build.usb_manufacturer="Arduino"
# create a new entry each board here
gd_generic_gd32e23x.menu.pnum.GD32E230C4_GENERIC=GD32E230C4 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230C4_GENERIC.upload.maximum_size=16384
gd_generic_gd32e23x.menu.pnum.GD32E230C4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32e23x.menu.pnum.GD32E230C4_GENERIC.build.board=GD32E230C4_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230C4_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230C4_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230C4_GENERIC.build.variant=GD32E230C4_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230C4_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230C6_GENERIC=GD32E230C6 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230C6_GENERIC.upload.maximum_size=32768
gd_generic_gd32e23x.menu.pnum.GD32E230C6_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32e23x.menu.pnum.GD32E230C6_GENERIC.build.board=GD32E230C6_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230C6_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230C6_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230C6_GENERIC.build.variant=GD32E230C6_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230C6_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230C8_GENERIC=GD32E230C8 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230C8_GENERIC.upload.maximum_size=65536
gd_generic_gd32e23x.menu.pnum.GD32E230C8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32e23x.menu.pnum.GD32E230C8_GENERIC.build.board=GD32E230C8_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230C8_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230C8_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230C8_GENERIC.build.variant=GD32E230C8_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230C8_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC=GD32E230F4 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.upload.maximum_size=16384
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.build.board=GD32E230F4_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.build.variant=GD32E230F4_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC=GD32E230F4 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.upload.maximum_size=16384
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.build.board=GD32E230F4_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.build.variant=GD32E230F4_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230F4_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC=GD32E230F6 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.upload.maximum_size=32768
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.build.board=GD32E230F6_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.build.variant=GD32E230F6_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC=GD32E230F6 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.upload.maximum_size=32768
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.build.board=GD32E230F6_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.build.variant=GD32E230F6_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230F6_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC=GD32E230F8 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.upload.maximum_size=65536
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.build.board=GD32E230F8_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.build.variant=GD32E230F8_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC=GD32E230F8 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.upload.maximum_size=65536
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.build.board=GD32E230F8_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.build.variant=GD32E230F8_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230F8_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230G4_GENERIC=GD32E230G4 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230G4_GENERIC.upload.maximum_size=16384
gd_generic_gd32e23x.menu.pnum.GD32E230G4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32e23x.menu.pnum.GD32E230G4_GENERIC.build.board=GD32E230G4_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230G4_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230G4_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230G4_GENERIC.build.variant=GD32E230G4_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230G4_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230G6_GENERIC=GD32E230G6 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230G6_GENERIC.upload.maximum_size=32768
gd_generic_gd32e23x.menu.pnum.GD32E230G6_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32e23x.menu.pnum.GD32E230G6_GENERIC.build.board=GD32E230G6_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230G6_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230G6_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230G6_GENERIC.build.variant=GD32E230G6_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230G6_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230G8_GENERIC=GD32E230G8 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230G8_GENERIC.upload.maximum_size=65536
gd_generic_gd32e23x.menu.pnum.GD32E230G8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32e23x.menu.pnum.GD32E230G8_GENERIC.build.board=GD32E230G8_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230G8_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230G8_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230G8_GENERIC.build.variant=GD32E230G8_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230G8_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC=GD32E230K4 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.upload.maximum_size=16384
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.build.board=GD32E230K4_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.build.variant=GD32E230K4_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC=GD32E230K4 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.upload.maximum_size=16384
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.build.board=GD32E230K4_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.build.variant=GD32E230K4_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230K4_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC=GD32E230K6 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.upload.maximum_size=32768
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.build.board=GD32E230K6_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.build.variant=GD32E230K6_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC=GD32E230K6 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.upload.maximum_size=32768
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.build.board=GD32E230K6_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.build.variant=GD32E230K6_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230K6_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC=GD32E230K8 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.upload.maximum_size=65536
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.build.board=GD32E230K8_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.build.variant=GD32E230K8_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC=GD32E230K8 (Generic)
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.upload.maximum_size=65536
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.build.board=GD32E230K8_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.build.series=GD32E23x
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.build.product_line=GD32E230
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.build.variant=GD32E230K8_GENERIC
gd_generic_gd32e23x.menu.pnum.GD32E230K8_GENERIC.upload.openocd_script=target/gd32e23x.cfg
gd_generic_gd32e23x.menu.usb.off=Off
# Upload menu
gd_generic_gd32e23x.menu.upload_method.serialMethod=gd32flash (Serial)
gd_generic_gd32e23x.menu.upload_method.serialMethod.upload.protocol=maple_serial
gd_generic_gd32e23x.menu.upload_method.serialMethod.upload.options=
gd_generic_gd32e23x.menu.upload_method.serialMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1
gd_generic_gd32e23x.menu.upload_method.serialMethod.upload.tool=serial_upload
gd_generic_gd32e23x.menu.upload_method.gdlinkMethod=GDlink (SWD)
gd_generic_gd32e23x.menu.upload_method.gdlinkMethod.upload.protocol=gdlink
gd_generic_gd32e23x.menu.upload_method.gdlinkMethod.upload.options=
gd_generic_gd32e23x.menu.upload_method.gdlinkMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER
gd_generic_gd32e23x.menu.upload_method.gdlinkMethod.upload.tool=gdlink_upload
gd_generic_gd32e23x.menu.upload_method.stlinkMethod=STLink (SWD)
gd_generic_gd32e23x.menu.upload_method.stlinkMethod.upload.protocol=stlink
gd_generic_gd32e23x.menu.upload_method.stlinkMethod.upload.options=
gd_generic_gd32e23x.menu.upload_method.stlinkMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER
gd_generic_gd32e23x.menu.upload_method.stlinkMethod.upload.tool=stlink_upload
gd_generic_gd32e23x.menu.upload_method.jlinkMethod=JLink (SWD)
gd_generic_gd32e23x.menu.upload_method.jlinkMethod.upload.protocol=jlink
gd_generic_gd32e23x.menu.upload_method.jlinkMethod.upload.options=
gd_generic_gd32e23x.menu.upload_method.jlinkMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER
gd_generic_gd32e23x.menu.upload_method.jlinkMethod.upload.tool=jlink_upload
gd_generic_gd32e23x.menu.upload_method.dfuUtilMethod=dfu-util (DFU - STMDuino bootloader)
gd_generic_gd32e23x.menu.upload_method.dfuUtilMethod.upload.protocol=dfu
gd_generic_gd32e23x.menu.upload_method.dfuUtilMethod.upload.options=
gd_generic_gd32e23x.menu.upload_method.dfuUtilMethod.build.upload_flags=
gd_generic_gd32e23x.menu.upload_method.dfuUtilMethod.upload.tool=dfu-util
gd_generic_gd32e23x.menu.upload_method.dfuUtilMethod.build.flash_offset=0x0x2000
gd_generic_gd32e23x.menu.upload_method.dfuUtilMethod.upload.pid=0x004
gd_generic_gd32e23x.menu.upload_method.dfuUtilMethod.upload.vid=0x1209
# Optimizations
gd_generic_gd32e23x.menu.opt.osstd=Smallest (default)
gd_generic_gd32e23x.menu.opt.o1std=Fast (-O1)
gd_generic_gd32e23x.menu.opt.o1std.build.flags.optimize=-O1
gd_generic_gd32e23x.menu.opt.o1std.build.flags.ldspecs=
gd_generic_gd32e23x.menu.opt.o2std=Faster (-O2)
gd_generic_gd32e23x.menu.opt.o2std.build.flags.optimize=-O2
gd_generic_gd32e23x.menu.opt.o2std.build.flags.ldspecs=
gd_generic_gd32e23x.menu.opt.o3std=Fastest (-O3)
gd_generic_gd32e23x.menu.opt.o3std.build.flags.optimize=-O3
gd_generic_gd32e23x.menu.opt.o3std.build.flags.ldspecs=
gd_generic_gd32e23x.menu.opt.ogstd=Debug (-Og)
gd_generic_gd32e23x.menu.opt.ogstd.build.flags.optimize=-Og
gd_generic_gd32e23x.menu.opt.ogstd.build.flags.ldspecs=
##################################################
# Generic GD32F1x0
gd_generic_gd32f1x0.name=GD32F1x0 Generic series
gd_generic_gd32f1x0.build.core=arduino
gd_generic_gd32f1x0.build.board=gd_generic_gd32f1x0
gd_generic_gd32f1x0.build.mcu=cortex-m3
gd_generic_gd32f1x0.build.series=GD32F1x0
gd_generic_gd32f1x0.build.vid=0xdead
gd_generic_gd32f1x0.build.pid=0xbeef
gd_generic_gd32f1x0.build.usb_product="USB Test"
gd_generic_gd32f1x0.build.usb_manufacturer="Arduino"
# create a new entry each board here
gd_generic_gd32f1x0.menu.pnum.GD32F130C4_GENERIC=GD32F130C4 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F130C4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f1x0.menu.pnum.GD32F130C4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F130C4_GENERIC.build.board=GD32F130C4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130C4_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F130C4_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F130C4_GENERIC.build.variant=GD32F130C4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130C4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F130C6_GENERIC=GD32F130C6 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F130C6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f1x0.menu.pnum.GD32F130C6_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F130C6_GENERIC.build.board=GD32F130C6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130C6_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F130C6_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F130C6_GENERIC.build.variant=GD32F130C6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130C6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F130C8_GENERIC=GD32F130C8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F130C8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F130C8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F130C8_GENERIC.build.board=GD32F130C8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130C8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F130C8_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F130C8_GENERIC.build.variant=GD32F130C8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130C8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F130F4_GENERIC=GD32F130F4 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F130F4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f1x0.menu.pnum.GD32F130F4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F130F4_GENERIC.build.board=GD32F130F4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130F4_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F130F4_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F130F4_GENERIC.build.variant=GD32F130F4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130F4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F130F6_GENERIC=GD32F130F6 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F130F6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f1x0.menu.pnum.GD32F130F6_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F130F6_GENERIC.build.board=GD32F130F6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130F6_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F130F6_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F130F6_GENERIC.build.variant=GD32F130F6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130F6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F130F8_GENERIC=GD32F130F8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F130F8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F130F8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F130F8_GENERIC.build.board=GD32F130F8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130F8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F130F8_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F130F8_GENERIC.build.variant=GD32F130F8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130F8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F130G4_GENERIC=GD32F130G4 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F130G4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f1x0.menu.pnum.GD32F130G4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F130G4_GENERIC.build.board=GD32F130G4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130G4_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F130G4_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F130G4_GENERIC.build.variant=GD32F130G4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130G4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F130G6_GENERIC=GD32F130G6 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F130G6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f1x0.menu.pnum.GD32F130G6_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F130G6_GENERIC.build.board=GD32F130G6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130G6_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F130G6_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F130G6_GENERIC.build.variant=GD32F130G6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130G6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F130G8_GENERIC=GD32F130G8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F130G8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F130G8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F130G8_GENERIC.build.board=GD32F130G8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130G8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F130G8_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F130G8_GENERIC.build.variant=GD32F130G8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130G8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F130K4_GENERIC=GD32F130K4 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F130K4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f1x0.menu.pnum.GD32F130K4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F130K4_GENERIC.build.board=GD32F130K4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130K4_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F130K4_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F130K4_GENERIC.build.variant=GD32F130K4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130K4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F130K6_GENERIC=GD32F130K6 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F130K6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f1x0.menu.pnum.GD32F130K6_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F130K6_GENERIC.build.board=GD32F130K6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130K6_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F130K6_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F130K6_GENERIC.build.variant=GD32F130K6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130K6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F130K8_GENERIC=GD32F130K8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F130K8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F130K8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F130K8_GENERIC.build.board=GD32F130K8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130K8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F130K8_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F130K8_GENERIC.build.variant=GD32F130K8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130K8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F130R8_GENERIC=GD32F130R8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F130R8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F130R8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F130R8_GENERIC.build.board=GD32F130R8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130R8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F130R8_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F130R8_GENERIC.build.variant=GD32F130R8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F130R8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F150C4_GENERIC=GD32F150C4 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F150C4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f1x0.menu.pnum.GD32F150C4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F150C4_GENERIC.build.board=GD32F150C4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150C4_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F150C4_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F150C4_GENERIC.build.variant=GD32F150C4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150C4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F150C6_GENERIC=GD32F150C6 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F150C6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f1x0.menu.pnum.GD32F150C6_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32f1x0.menu.pnum.GD32F150C6_GENERIC.build.board=GD32F150C6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150C6_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F150C6_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F150C6_GENERIC.build.variant=GD32F150C6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150C6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F150C8_GENERIC=GD32F150C8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F150C8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F150C8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F150C8_GENERIC.build.board=GD32F150C8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150C8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F150C8_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F150C8_GENERIC.build.variant=GD32F150C8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150C8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F150G4_GENERIC=GD32F150G4 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F150G4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f1x0.menu.pnum.GD32F150G4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F150G4_GENERIC.build.board=GD32F150G4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150G4_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F150G4_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F150G4_GENERIC.build.variant=GD32F150G4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150G4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F150G6_GENERIC=GD32F150G6 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F150G6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f1x0.menu.pnum.GD32F150G6_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32f1x0.menu.pnum.GD32F150G6_GENERIC.build.board=GD32F150G6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150G6_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F150G6_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F150G6_GENERIC.build.variant=GD32F150G6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150G6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F150G8_GENERIC=GD32F150G8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F150G8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F150G8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F150G8_GENERIC.build.board=GD32F150G8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150G8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F150G8_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F150G8_GENERIC.build.variant=GD32F150G8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150G8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F150K4_GENERIC=GD32F150K4 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F150K4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f1x0.menu.pnum.GD32F150K4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F150K4_GENERIC.build.board=GD32F150K4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150K4_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F150K4_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F150K4_GENERIC.build.variant=GD32F150K4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150K4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F150K6_GENERIC=GD32F150K6 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F150K6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f1x0.menu.pnum.GD32F150K6_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32f1x0.menu.pnum.GD32F150K6_GENERIC.build.board=GD32F150K6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150K6_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F150K6_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F150K6_GENERIC.build.variant=GD32F150K6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150K6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F150K8_GENERIC=GD32F150K8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F150K8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F150K8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F150K8_GENERIC.build.board=GD32F150K8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150K8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F150K8_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F150K8_GENERIC.build.variant=GD32F150K8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150K8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F150R4_GENERIC=GD32F150R4 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F150R4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f1x0.menu.pnum.GD32F150R4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F150R4_GENERIC.build.board=GD32F150R4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150R4_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F150R4_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F150R4_GENERIC.build.variant=GD32F150R4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150R4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F150R6_GENERIC=GD32F150R6 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F150R6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f1x0.menu.pnum.GD32F150R6_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32f1x0.menu.pnum.GD32F150R6_GENERIC.build.board=GD32F150R6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150R6_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F150R6_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F150R6_GENERIC.build.variant=GD32F150R6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150R6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F150R8_GENERIC=GD32F150R8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F150R8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F150R8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F150R8_GENERIC.build.board=GD32F150R8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150R8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F150R8_GENERIC.build.product_line=GD32F130_150
gd_generic_gd32f1x0.menu.pnum.GD32F150R8_GENERIC.build.variant=GD32F150R8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F150R8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F170C4_GENERIC=GD32F170C4 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F170C4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f1x0.menu.pnum.GD32F170C4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F170C4_GENERIC.build.board=GD32F170C4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170C4_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F170C4_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F170C4_GENERIC.build.variant=GD32F170C4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170C4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F170C6_GENERIC=GD32F170C6 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F170C6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f1x0.menu.pnum.GD32F170C6_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F170C6_GENERIC.build.board=GD32F170C6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170C6_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F170C6_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F170C6_GENERIC.build.variant=GD32F170C6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170C6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F170C8_GENERIC=GD32F170C8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F170C8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F170C8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F170C8_GENERIC.build.board=GD32F170C8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170C8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F170C8_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F170C8_GENERIC.build.variant=GD32F170C8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170C8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F170R8_GENERIC=GD32F170R8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F170R8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F170R8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F170R8_GENERIC.build.board=GD32F170R8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170R8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F170R8_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F170R8_GENERIC.build.variant=GD32F170R8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170R8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F170T4_GENERIC=GD32F170T4 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F170T4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f1x0.menu.pnum.GD32F170T4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F170T4_GENERIC.build.board=GD32F170T4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170T4_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F170T4_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F170T4_GENERIC.build.variant=GD32F170T4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170T4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F170T6_GENERIC=GD32F170T6 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F170T6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f1x0.menu.pnum.GD32F170T6_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F170T6_GENERIC.build.board=GD32F170T6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170T6_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F170T6_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F170T6_GENERIC.build.variant=GD32F170T6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170T6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F170T8_GENERIC=GD32F170T8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F170T8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F170T8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F170T8_GENERIC.build.board=GD32F170T8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170T8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F170T8_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F170T8_GENERIC.build.variant=GD32F170T8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F170T8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F190C4_GENERIC=GD32F190C4 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F190C4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f1x0.menu.pnum.GD32F190C4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F190C4_GENERIC.build.board=GD32F190C4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190C4_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F190C4_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F190C4_GENERIC.build.variant=GD32F190C4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190C4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F190C6_GENERIC=GD32F190C6 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F190C6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f1x0.menu.pnum.GD32F190C6_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32f1x0.menu.pnum.GD32F190C6_GENERIC.build.board=GD32F190C6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190C6_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F190C6_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F190C6_GENERIC.build.variant=GD32F190C6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190C6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F190C8_GENERIC=GD32F190C8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F190C8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F190C8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F190C8_GENERIC.build.board=GD32F190C8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190C8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F190C8_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F190C8_GENERIC.build.variant=GD32F190C8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190C8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F190R4_GENERIC=GD32F190R4 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F190R4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f1x0.menu.pnum.GD32F190R4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F190R4_GENERIC.build.board=GD32F190R4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190R4_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F190R4_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F190R4_GENERIC.build.variant=GD32F190R4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190R4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F190R6_GENERIC=GD32F190R6 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F190R6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f1x0.menu.pnum.GD32F190R6_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32f1x0.menu.pnum.GD32F190R6_GENERIC.build.board=GD32F190R6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190R6_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F190R6_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F190R6_GENERIC.build.variant=GD32F190R6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190R6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F190R8_GENERIC=GD32F190R8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F190R8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F190R8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F190R8_GENERIC.build.board=GD32F190R8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190R8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F190R8_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F190R8_GENERIC.build.variant=GD32F190R8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190R8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F190T4_GENERIC=GD32F190T4 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F190T4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f1x0.menu.pnum.GD32F190T4_GENERIC.upload.maximum_data_size=4096
gd_generic_gd32f1x0.menu.pnum.GD32F190T4_GENERIC.build.board=GD32F190T4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190T4_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F190T4_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F190T4_GENERIC.build.variant=GD32F190T4_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190T4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F190T6_GENERIC=GD32F190T6 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F190T6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f1x0.menu.pnum.GD32F190T6_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32f1x0.menu.pnum.GD32F190T6_GENERIC.build.board=GD32F190T6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190T6_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F190T6_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F190T6_GENERIC.build.variant=GD32F190T6_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190T6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.pnum.GD32F190T8_GENERIC=GD32F190T8 (Generic)
gd_generic_gd32f1x0.menu.pnum.GD32F190T8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f1x0.menu.pnum.GD32F190T8_GENERIC.upload.maximum_data_size=8192
gd_generic_gd32f1x0.menu.pnum.GD32F190T8_GENERIC.build.board=GD32F190T8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190T8_GENERIC.build.series=GD32F1x0
gd_generic_gd32f1x0.menu.pnum.GD32F190T8_GENERIC.build.product_line=GD32F170_190
gd_generic_gd32f1x0.menu.pnum.GD32F190T8_GENERIC.build.variant=GD32F190T8_GENERIC
gd_generic_gd32f1x0.menu.pnum.GD32F190T8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f1x0.menu.usb.off=Off
# Upload menu
gd_generic_gd32f1x0.menu.upload_method.serialMethod=gd32flash (Serial)
gd_generic_gd32f1x0.menu.upload_method.serialMethod.upload.protocol=maple_serial
gd_generic_gd32f1x0.menu.upload_method.serialMethod.upload.options=
gd_generic_gd32f1x0.menu.upload_method.serialMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1
gd_generic_gd32f1x0.menu.upload_method.serialMethod.upload.tool=serial_upload
gd_generic_gd32f1x0.menu.upload_method.gdlinkMethod=GDlink (SWD)
gd_generic_gd32f1x0.menu.upload_method.gdlinkMethod.upload.protocol=gdlink
gd_generic_gd32f1x0.menu.upload_method.gdlinkMethod.upload.options=
gd_generic_gd32f1x0.menu.upload_method.gdlinkMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER
gd_generic_gd32f1x0.menu.upload_method.gdlinkMethod.upload.tool=gdlink_upload
gd_generic_gd32f1x0.menu.upload_method.stlinkMethod=STLink (SWD)
gd_generic_gd32f1x0.menu.upload_method.stlinkMethod.upload.protocol=stlink
gd_generic_gd32f1x0.menu.upload_method.stlinkMethod.upload.options=
gd_generic_gd32f1x0.menu.upload_method.stlinkMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER
gd_generic_gd32f1x0.menu.upload_method.stlinkMethod.upload.tool=stlink_upload
gd_generic_gd32f1x0.menu.upload_method.jlinkMethod=JLink (SWD)
gd_generic_gd32f1x0.menu.upload_method.jlinkMethod.upload.protocol=jlink
gd_generic_gd32f1x0.menu.upload_method.jlinkMethod.upload.options=
gd_generic_gd32f1x0.menu.upload_method.jlinkMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER
gd_generic_gd32f1x0.menu.upload_method.jlinkMethod.upload.tool=jlink_upload
gd_generic_gd32f1x0.menu.upload_method.dfuUtilMethod=dfu-util (DFU - STMDuino bootloader)
gd_generic_gd32f1x0.menu.upload_method.dfuUtilMethod.upload.protocol=dfu
gd_generic_gd32f1x0.menu.upload_method.dfuUtilMethod.upload.options=
gd_generic_gd32f1x0.menu.upload_method.dfuUtilMethod.build.upload_flags=
gd_generic_gd32f1x0.menu.upload_method.dfuUtilMethod.upload.tool=dfu-util
gd_generic_gd32f1x0.menu.upload_method.dfuUtilMethod.build.flash_offset=0x0x2000
gd_generic_gd32f1x0.menu.upload_method.dfuUtilMethod.upload.pid=0x004
gd_generic_gd32f1x0.menu.upload_method.dfuUtilMethod.upload.vid=0x1209
# Optimizations
gd_generic_gd32f1x0.menu.opt.osstd=Smallest (default)
gd_generic_gd32f1x0.menu.opt.o1std=Fast (-O1)
gd_generic_gd32f1x0.menu.opt.o1std.build.flags.optimize=-O1
gd_generic_gd32f1x0.menu.opt.o1std.build.flags.ldspecs=
gd_generic_gd32f1x0.menu.opt.o2std=Faster (-O2)
gd_generic_gd32f1x0.menu.opt.o2std.build.flags.optimize=-O2
gd_generic_gd32f1x0.menu.opt.o2std.build.flags.ldspecs=
gd_generic_gd32f1x0.menu.opt.o3std=Fastest (-O3)
gd_generic_gd32f1x0.menu.opt.o3std.build.flags.optimize=-O3
gd_generic_gd32f1x0.menu.opt.o3std.build.flags.ldspecs=
gd_generic_gd32f1x0.menu.opt.ogstd=Debug (-Og)
gd_generic_gd32f1x0.menu.opt.ogstd.build.flags.optimize=-Og
gd_generic_gd32f1x0.menu.opt.ogstd.build.flags.ldspecs=
##################################################
# Generic GD32F30x
gd_generic_gd32f30x.name=GD32F30x Generic series
gd_generic_gd32f30x.build.core=arduino
gd_generic_gd32f30x.build.board=gd_generic_gd32f30x
gd_generic_gd32f30x.build.mcu=cortex-m4
gd_generic_gd32f30x.build.series=GD32F30x
gd_generic_gd32f30x.build.vid=0xdead
gd_generic_gd32f30x.build.pid=0xbeef
gd_generic_gd32f30x.build.usb_product="USB Test"
gd_generic_gd32f30x.build.usb_manufacturer="Arduino"
# create a new entry each board here
gd_generic_gd32f30x.menu.pnum.GD32F303CC_GENERIC=GD32F303CC (Generic)
gd_generic_gd32f30x.menu.pnum.GD32F303CC_GENERIC.upload.maximum_size=262144
gd_generic_gd32f30x.menu.pnum.GD32F303CC_GENERIC.upload.maximum_data_size=49152
gd_generic_gd32f30x.menu.pnum.GD32F303CC_GENERIC.build.board=GD32F303CC_GENERIC
gd_generic_gd32f30x.menu.pnum.GD32F303CC_GENERIC.build.series=GD32F30x
gd_generic_gd32f30x.menu.pnum.GD32F303CC_GENERIC.build.product_line=GD32F30X_HD
gd_generic_gd32f30x.menu.pnum.GD32F303CC_GENERIC.build.variant=GD32F303CC_GENERIC
gd_generic_gd32f30x.menu.pnum.GD32F303CC_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f30x.menu.usb.off=Off
gd_generic_gd32f30x.menu.usb.on=On
gd_generic_gd32f30x.menu.usb.on.build.enable_usb={build.usb_flags} -DUSBCON -DUSBD_USE_CDC
# Upload menu
gd_generic_gd32f30x.menu.upload_method.serialMethod=gd32flash (Serial)
gd_generic_gd32f30x.menu.upload_method.serialMethod.upload.protocol=maple_serial
gd_generic_gd32f30x.menu.upload_method.serialMethod.upload.options=
gd_generic_gd32f30x.menu.upload_method.serialMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1
gd_generic_gd32f30x.menu.upload_method.serialMethod.upload.tool=serial_upload
gd_generic_gd32f30x.menu.upload_method.gdlinkMethod=GDlink (SWD)
gd_generic_gd32f30x.menu.upload_method.gdlinkMethod.upload.protocol=gdlink
gd_generic_gd32f30x.menu.upload_method.gdlinkMethod.upload.options=
gd_generic_gd32f30x.menu.upload_method.gdlinkMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER
gd_generic_gd32f30x.menu.upload_method.gdlinkMethod.upload.tool=gdlink_upload
gd_generic_gd32f30x.menu.upload_method.stlinkMethod=STLink (SWD)
gd_generic_gd32f30x.menu.upload_method.stlinkMethod.upload.protocol=stlink
gd_generic_gd32f30x.menu.upload_method.stlinkMethod.upload.options=
gd_generic_gd32f30x.menu.upload_method.stlinkMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER
gd_generic_gd32f30x.menu.upload_method.stlinkMethod.upload.tool=stlink_upload
gd_generic_gd32f30x.menu.upload_method.jlinkMethod=JLink (SWD)
gd_generic_gd32f30x.menu.upload_method.jlinkMethod.upload.protocol=jlink
gd_generic_gd32f30x.menu.upload_method.jlinkMethod.upload.options=
gd_generic_gd32f30x.menu.upload_method.jlinkMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER
gd_generic_gd32f30x.menu.upload_method.jlinkMethod.upload.tool=jlink_upload
gd_generic_gd32f30x.menu.upload_method.dfuUtilMethod=dfu-util (DFU - STMDuino bootloader)
gd_generic_gd32f30x.menu.upload_method.dfuUtilMethod.upload.protocol=dfu
gd_generic_gd32f30x.menu.upload_method.dfuUtilMethod.upload.options=
gd_generic_gd32f30x.menu.upload_method.dfuUtilMethod.build.upload_flags=
gd_generic_gd32f30x.menu.upload_method.dfuUtilMethod.upload.tool=dfu-util
gd_generic_gd32f30x.menu.upload_method.dfuUtilMethod.build.flash_offset=0x0x2000
gd_generic_gd32f30x.menu.upload_method.dfuUtilMethod.upload.pid=0x004
gd_generic_gd32f30x.menu.upload_method.dfuUtilMethod.upload.vid=0x1209
# Optimizations
gd_generic_gd32f30x.menu.opt.osstd=Smallest (default)
gd_generic_gd32f30x.menu.opt.o1std=Fast (-O1)
gd_generic_gd32f30x.menu.opt.o1std.build.flags.optimize=-O1
gd_generic_gd32f30x.menu.opt.o1std.build.flags.ldspecs=
gd_generic_gd32f30x.menu.opt.o2std=Faster (-O2)
gd_generic_gd32f30x.menu.opt.o2std.build.flags.optimize=-O2
gd_generic_gd32f30x.menu.opt.o2std.build.flags.ldspecs=
gd_generic_gd32f30x.menu.opt.o3std=Fastest (-O3)
gd_generic_gd32f30x.menu.opt.o3std.build.flags.optimize=-O3
gd_generic_gd32f30x.menu.opt.o3std.build.flags.ldspecs=
gd_generic_gd32f30x.menu.opt.ogstd=Debug (-Og)
gd_generic_gd32f30x.menu.opt.ogstd.build.flags.optimize=-Og
gd_generic_gd32f30x.menu.opt.ogstd.build.flags.ldspecs=
##################################################
# Generic GD32F10x
gd_generic_gd32f10x.name=GD32F10x Generic series
gd_generic_gd32f10x.build.core=arduino
gd_generic_gd32f10x.build.board=gd_generic_gd32f10x
gd_generic_gd32f10x.build.mcu=cortex-m3
gd_generic_gd32f10x.build.series=GD32F10x
gd_generic_gd32f10x.build.vid=0xdead
gd_generic_gd32f10x.build.pid=0xbeef
gd_generic_gd32f10x.build.usb_product="USB Test"
gd_generic_gd32f10x.build.usb_manufacturer="Arduino"
# create a new entry each board here
gd_generic_gd32f10x.menu.pnum.GD32F103C4_GENERIC=GD32F103C4 (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103C4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f10x.menu.pnum.GD32F103C4_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32f10x.menu.pnum.GD32F103C4_GENERIC.build.board=GD32F103C4_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103C4_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103C4_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103C4_GENERIC.build.variant=GD32F103C4_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103C4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103C6_GENERIC=GD32F103C6 (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103C6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f10x.menu.pnum.GD32F103C6_GENERIC.upload.maximum_data_size=10240
gd_generic_gd32f10x.menu.pnum.GD32F103C6_GENERIC.build.board=GD32F103C6_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103C6_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103C6_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103C6_GENERIC.build.variant=GD32F103C6_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103C6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103C8_GENERIC=GD32F103C8 (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103C8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f10x.menu.pnum.GD32F103C8_GENERIC.upload.maximum_data_size=20480
gd_generic_gd32f10x.menu.pnum.GD32F103C8_GENERIC.build.board=GD32F103C8_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103C8_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103C8_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103C8_GENERIC.build.variant=GD32F103C8_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103C8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103CB_GENERIC=GD32F103CB (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103CB_GENERIC.upload.maximum_size=131072
gd_generic_gd32f10x.menu.pnum.GD32F103CB_GENERIC.upload.maximum_data_size=20480
gd_generic_gd32f10x.menu.pnum.GD32F103CB_GENERIC.build.board=GD32F103CB_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103CB_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103CB_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103CB_GENERIC.build.variant=GD32F103CB_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103CB_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103R4_GENERIC=GD32F103R4 (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103R4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f10x.menu.pnum.GD32F103R4_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32f10x.menu.pnum.GD32F103R4_GENERIC.build.board=GD32F103R4_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103R4_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103R4_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103R4_GENERIC.build.variant=GD32F103R4_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103R4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103R6_GENERIC=GD32F103R6 (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103R6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f10x.menu.pnum.GD32F103R6_GENERIC.upload.maximum_data_size=10240
gd_generic_gd32f10x.menu.pnum.GD32F103R6_GENERIC.build.board=GD32F103R6_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103R6_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103R6_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103R6_GENERIC.build.variant=GD32F103R6_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103R6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103R8_GENERIC=GD32F103R8 (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103R8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f10x.menu.pnum.GD32F103R8_GENERIC.upload.maximum_data_size=20480
gd_generic_gd32f10x.menu.pnum.GD32F103R8_GENERIC.build.board=GD32F103R8_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103R8_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103R8_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103R8_GENERIC.build.variant=GD32F103R8_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103R8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103RB_GENERIC=GD32F103RB (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103RB_GENERIC.upload.maximum_size=131072
gd_generic_gd32f10x.menu.pnum.GD32F103RB_GENERIC.upload.maximum_data_size=20480
gd_generic_gd32f10x.menu.pnum.GD32F103RB_GENERIC.build.board=GD32F103RB_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RB_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103RB_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103RB_GENERIC.build.variant=GD32F103RB_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RB_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103RC_GENERIC=GD32F103RC (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103RC_GENERIC.upload.maximum_size=262144
gd_generic_gd32f10x.menu.pnum.GD32F103RC_GENERIC.upload.maximum_data_size=49152
gd_generic_gd32f10x.menu.pnum.GD32F103RC_GENERIC.build.board=GD32F103RC_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RC_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103RC_GENERIC.build.product_line=GD32F10X_HD
gd_generic_gd32f10x.menu.pnum.GD32F103RC_GENERIC.build.variant=GD32F103RC_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RC_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103RD_GENERIC=GD32F103RD (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103RD_GENERIC.upload.maximum_size=393216
gd_generic_gd32f10x.menu.pnum.GD32F103RD_GENERIC.upload.maximum_data_size=65536
gd_generic_gd32f10x.menu.pnum.GD32F103RD_GENERIC.build.board=GD32F103RD_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RD_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103RD_GENERIC.build.product_line=GD32F10X_HD
gd_generic_gd32f10x.menu.pnum.GD32F103RD_GENERIC.build.variant=GD32F103RD_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RD_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103RE_GENERIC=GD32F103RE (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103RE_GENERIC.upload.maximum_size=524288
gd_generic_gd32f10x.menu.pnum.GD32F103RE_GENERIC.upload.maximum_data_size=65536
gd_generic_gd32f10x.menu.pnum.GD32F103RE_GENERIC.build.board=GD32F103RE_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RE_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103RE_GENERIC.build.product_line=GD32F10X_HD
gd_generic_gd32f10x.menu.pnum.GD32F103RE_GENERIC.build.variant=GD32F103RE_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RE_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103RF_GENERIC=GD32F103RF (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103RF_GENERIC.upload.maximum_size=786432
gd_generic_gd32f10x.menu.pnum.GD32F103RF_GENERIC.upload.maximum_data_size=98304
gd_generic_gd32f10x.menu.pnum.GD32F103RF_GENERIC.build.board=GD32F103RF_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RF_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103RF_GENERIC.build.product_line=GD32F10X_XD
gd_generic_gd32f10x.menu.pnum.GD32F103RF_GENERIC.build.variant=GD32F103RF_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RF_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103RG_GENERIC=GD32F103RG (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103RG_GENERIC.upload.maximum_size=1048576
gd_generic_gd32f10x.menu.pnum.GD32F103RG_GENERIC.upload.maximum_data_size=98304
gd_generic_gd32f10x.menu.pnum.GD32F103RG_GENERIC.build.board=GD32F103RG_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RG_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103RG_GENERIC.build.product_line=GD32F10X_XD
gd_generic_gd32f10x.menu.pnum.GD32F103RG_GENERIC.build.variant=GD32F103RG_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RG_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103RI_GENERIC=GD32F103RI (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103RI_GENERIC.upload.maximum_size=2097152
gd_generic_gd32f10x.menu.pnum.GD32F103RI_GENERIC.upload.maximum_data_size=98304
gd_generic_gd32f10x.menu.pnum.GD32F103RI_GENERIC.build.board=GD32F103RI_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RI_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103RI_GENERIC.build.product_line=GD32F10X_XD
gd_generic_gd32f10x.menu.pnum.GD32F103RI_GENERIC.build.variant=GD32F103RI_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RI_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103RK_GENERIC=GD32F103RK (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103RK_GENERIC.upload.maximum_size=3145728
gd_generic_gd32f10x.menu.pnum.GD32F103RK_GENERIC.upload.maximum_data_size=98304
gd_generic_gd32f10x.menu.pnum.GD32F103RK_GENERIC.build.board=GD32F103RK_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RK_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103RK_GENERIC.build.product_line=GD32F10X_XD
gd_generic_gd32f10x.menu.pnum.GD32F103RK_GENERIC.build.variant=GD32F103RK_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103RK_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103T4_GENERIC=GD32F103T4 (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103T4_GENERIC.upload.maximum_size=16384
gd_generic_gd32f10x.menu.pnum.GD32F103T4_GENERIC.upload.maximum_data_size=6144
gd_generic_gd32f10x.menu.pnum.GD32F103T4_GENERIC.build.board=GD32F103T4_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103T4_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103T4_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103T4_GENERIC.build.variant=GD32F103T4_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103T4_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103T6_GENERIC=GD32F103T6 (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103T6_GENERIC.upload.maximum_size=32768
gd_generic_gd32f10x.menu.pnum.GD32F103T6_GENERIC.upload.maximum_data_size=10240
gd_generic_gd32f10x.menu.pnum.GD32F103T6_GENERIC.build.board=GD32F103T6_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103T6_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103T6_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103T6_GENERIC.build.variant=GD32F103T6_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103T6_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103T8_GENERIC=GD32F103T8 (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103T8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f10x.menu.pnum.GD32F103T8_GENERIC.upload.maximum_data_size=20480
gd_generic_gd32f10x.menu.pnum.GD32F103T8_GENERIC.build.board=GD32F103T8_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103T8_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103T8_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103T8_GENERIC.build.variant=GD32F103T8_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103T8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103TB_GENERIC=GD32F103TB (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103TB_GENERIC.upload.maximum_size=131072
gd_generic_gd32f10x.menu.pnum.GD32F103TB_GENERIC.upload.maximum_data_size=20480
gd_generic_gd32f10x.menu.pnum.GD32F103TB_GENERIC.build.board=GD32F103TB_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103TB_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103TB_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103TB_GENERIC.build.variant=GD32F103TB_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103TB_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103V8_GENERIC=GD32F103V8 (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103V8_GENERIC.upload.maximum_size=65536
gd_generic_gd32f10x.menu.pnum.GD32F103V8_GENERIC.upload.maximum_data_size=20480
gd_generic_gd32f10x.menu.pnum.GD32F103V8_GENERIC.build.board=GD32F103V8_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103V8_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103V8_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103V8_GENERIC.build.variant=GD32F103V8_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103V8_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103VB_GENERIC=GD32F103VB (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103VB_GENERIC.upload.maximum_size=131072
gd_generic_gd32f10x.menu.pnum.GD32F103VB_GENERIC.upload.maximum_data_size=20480
gd_generic_gd32f10x.menu.pnum.GD32F103VB_GENERIC.build.board=GD32F103VB_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VB_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103VB_GENERIC.build.product_line=GD32F10X_MD
gd_generic_gd32f10x.menu.pnum.GD32F103VB_GENERIC.build.variant=GD32F103VB_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VB_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103VC_GENERIC=GD32F103VC (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103VC_GENERIC.upload.maximum_size=262144
gd_generic_gd32f10x.menu.pnum.GD32F103VC_GENERIC.upload.maximum_data_size=49152
gd_generic_gd32f10x.menu.pnum.GD32F103VC_GENERIC.build.board=GD32F103VC_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VC_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103VC_GENERIC.build.product_line=GD32F10X_HD
gd_generic_gd32f10x.menu.pnum.GD32F103VC_GENERIC.build.variant=GD32F103VC_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VC_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103VD_GENERIC=GD32F103VD (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103VD_GENERIC.upload.maximum_size=393216
gd_generic_gd32f10x.menu.pnum.GD32F103VD_GENERIC.upload.maximum_data_size=65536
gd_generic_gd32f10x.menu.pnum.GD32F103VD_GENERIC.build.board=GD32F103VD_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VD_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103VD_GENERIC.build.product_line=GD32F10X_HD
gd_generic_gd32f10x.menu.pnum.GD32F103VD_GENERIC.build.variant=GD32F103VD_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VD_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103VE_GENERIC=GD32F103VE (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103VE_GENERIC.upload.maximum_size=524288
gd_generic_gd32f10x.menu.pnum.GD32F103VE_GENERIC.upload.maximum_data_size=65536
gd_generic_gd32f10x.menu.pnum.GD32F103VE_GENERIC.build.board=GD32F103VE_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VE_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103VE_GENERIC.build.product_line=GD32F10X_HD
gd_generic_gd32f10x.menu.pnum.GD32F103VE_GENERIC.build.variant=GD32F103VE_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VE_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103VF_GENERIC=GD32F103VF (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103VF_GENERIC.upload.maximum_size=786432
gd_generic_gd32f10x.menu.pnum.GD32F103VF_GENERIC.upload.maximum_data_size=98304
gd_generic_gd32f10x.menu.pnum.GD32F103VF_GENERIC.build.board=GD32F103VF_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VF_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103VF_GENERIC.build.product_line=GD32F10X_XD
gd_generic_gd32f10x.menu.pnum.GD32F103VF_GENERIC.build.variant=GD32F103VF_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VF_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103VG_GENERIC=GD32F103VG (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103VG_GENERIC.upload.maximum_size=1048576
gd_generic_gd32f10x.menu.pnum.GD32F103VG_GENERIC.upload.maximum_data_size=98304
gd_generic_gd32f10x.menu.pnum.GD32F103VG_GENERIC.build.board=GD32F103VG_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VG_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103VG_GENERIC.build.product_line=GD32F10X_XD
gd_generic_gd32f10x.menu.pnum.GD32F103VG_GENERIC.build.variant=GD32F103VG_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VG_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103VI_GENERIC=GD32F103VI (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103VI_GENERIC.upload.maximum_size=2097152
gd_generic_gd32f10x.menu.pnum.GD32F103VI_GENERIC.upload.maximum_data_size=98304
gd_generic_gd32f10x.menu.pnum.GD32F103VI_GENERIC.build.board=GD32F103VI_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VI_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103VI_GENERIC.build.product_line=GD32F10X_XD
gd_generic_gd32f10x.menu.pnum.GD32F103VI_GENERIC.build.variant=GD32F103VI_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VI_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103VK_GENERIC=GD32F103VK (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103VK_GENERIC.upload.maximum_size=3145728
gd_generic_gd32f10x.menu.pnum.GD32F103VK_GENERIC.upload.maximum_data_size=98304
gd_generic_gd32f10x.menu.pnum.GD32F103VK_GENERIC.build.board=GD32F103VK_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VK_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103VK_GENERIC.build.product_line=GD32F10X_XD
gd_generic_gd32f10x.menu.pnum.GD32F103VK_GENERIC.build.variant=GD32F103VK_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103VK_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103ZC_GENERIC=GD32F103ZC (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103ZC_GENERIC.upload.maximum_size=262144
gd_generic_gd32f10x.menu.pnum.GD32F103ZC_GENERIC.upload.maximum_data_size=49152
gd_generic_gd32f10x.menu.pnum.GD32F103ZC_GENERIC.build.board=GD32F103ZC_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZC_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103ZC_GENERIC.build.product_line=GD32F10X_HD
gd_generic_gd32f10x.menu.pnum.GD32F103ZC_GENERIC.build.variant=GD32F103ZC_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZC_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103ZD_GENERIC=GD32F103ZD (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103ZD_GENERIC.upload.maximum_size=393216
gd_generic_gd32f10x.menu.pnum.GD32F103ZD_GENERIC.upload.maximum_data_size=65536
gd_generic_gd32f10x.menu.pnum.GD32F103ZD_GENERIC.build.board=GD32F103ZD_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZD_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103ZD_GENERIC.build.product_line=GD32F10X_HD
gd_generic_gd32f10x.menu.pnum.GD32F103ZD_GENERIC.build.variant=GD32F103ZD_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZD_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103ZE_GENERIC=GD32F103ZE (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103ZE_GENERIC.upload.maximum_size=524288
gd_generic_gd32f10x.menu.pnum.GD32F103ZE_GENERIC.upload.maximum_data_size=65536
gd_generic_gd32f10x.menu.pnum.GD32F103ZE_GENERIC.build.board=GD32F103ZE_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZE_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103ZE_GENERIC.build.product_line=GD32F10X_HD
gd_generic_gd32f10x.menu.pnum.GD32F103ZE_GENERIC.build.variant=GD32F103ZE_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZE_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103ZF_GENERIC=GD32F103ZF (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103ZF_GENERIC.upload.maximum_size=786432
gd_generic_gd32f10x.menu.pnum.GD32F103ZF_GENERIC.upload.maximum_data_size=98304
gd_generic_gd32f10x.menu.pnum.GD32F103ZF_GENERIC.build.board=GD32F103ZF_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZF_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103ZF_GENERIC.build.product_line=GD32F10X_XD
gd_generic_gd32f10x.menu.pnum.GD32F103ZF_GENERIC.build.variant=GD32F103ZF_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZF_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103ZG_GENERIC=GD32F103ZG (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103ZG_GENERIC.upload.maximum_size=1048576
gd_generic_gd32f10x.menu.pnum.GD32F103ZG_GENERIC.upload.maximum_data_size=98304
gd_generic_gd32f10x.menu.pnum.GD32F103ZG_GENERIC.build.board=GD32F103ZG_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZG_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103ZG_GENERIC.build.product_line=GD32F10X_XD
gd_generic_gd32f10x.menu.pnum.GD32F103ZG_GENERIC.build.variant=GD32F103ZG_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZG_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103ZI_GENERIC=GD32F103ZI (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103ZI_GENERIC.upload.maximum_size=2097152
gd_generic_gd32f10x.menu.pnum.GD32F103ZI_GENERIC.upload.maximum_data_size=98304
gd_generic_gd32f10x.menu.pnum.GD32F103ZI_GENERIC.build.board=GD32F103ZI_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZI_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103ZI_GENERIC.build.product_line=GD32F10X_XD
gd_generic_gd32f10x.menu.pnum.GD32F103ZI_GENERIC.build.variant=GD32F103ZI_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZI_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.pnum.GD32F103ZK_GENERIC=GD32F103ZK (Generic)
gd_generic_gd32f10x.menu.pnum.GD32F103ZK_GENERIC.upload.maximum_size=3145728
gd_generic_gd32f10x.menu.pnum.GD32F103ZK_GENERIC.upload.maximum_data_size=98304
gd_generic_gd32f10x.menu.pnum.GD32F103ZK_GENERIC.build.board=GD32F103ZK_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZK_GENERIC.build.series=GD32F10x
gd_generic_gd32f10x.menu.pnum.GD32F103ZK_GENERIC.build.product_line=GD32F10X_XD
gd_generic_gd32f10x.menu.pnum.GD32F103ZK_GENERIC.build.variant=GD32F103ZK_GENERIC
gd_generic_gd32f10x.menu.pnum.GD32F103ZK_GENERIC.upload.openocd_script=target/stm32f1x.cfg
gd_generic_gd32f10x.menu.usb.off=Off
# Upload menu
gd_generic_gd32f10x.menu.upload_method.serialMethod=gd32flash (Serial)
gd_generic_gd32f10x.menu.upload_method.serialMethod.upload.protocol=maple_serial
gd_generic_gd32f10x.menu.upload_method.serialMethod.upload.options=
gd_generic_gd32f10x.menu.upload_method.serialMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1
gd_generic_gd32f10x.menu.upload_method.serialMethod.upload.tool=serial_upload
gd_generic_gd32f10x.menu.upload_method.gdlinkMethod=GDlink (SWD)
gd_generic_gd32f10x.menu.upload_method.gdlinkMethod.upload.protocol=gdlink
gd_generic_gd32f10x.menu.upload_method.gdlinkMethod.upload.options=
gd_generic_gd32f10x.menu.upload_method.gdlinkMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER
gd_generic_gd32f10x.menu.upload_method.gdlinkMethod.upload.tool=gdlink_upload
gd_generic_gd32f10x.menu.upload_method.stlinkMethod=STLink (SWD)
gd_generic_gd32f10x.menu.upload_method.stlinkMethod.upload.protocol=stlink
gd_generic_gd32f10x.menu.upload_method.stlinkMethod.upload.options=
gd_generic_gd32f10x.menu.upload_method.stlinkMethod.build.upload_flags=-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER