1414; ESP8266
1515; ESP32
1616; SAMD
17+ ; DUE
1718; NRF52
1819; STM32
20+ ; AVR
21+ ; TEENSY
22+ ; pico
23+ ; portenta_h7_m7
24+ ; portenta_h7_m4
25+
1926; ============================================================
2027; default_envs = ESP8266
2128; default_envs = ESP32
2229default_envs = SAMD
30+ ; default_envs = DUE
2331; default_envs = NRF52
2432; default_envs = STM32
33+ ; default_envs = AVR
34+ ; default_envs = TEENSY
35+ ; default_envs = pico
2536; default_envs = portenta_h7_m7
2637; default_envs = portenta_h7_m4
2738
@@ -76,15 +87,19 @@ build_flags =
7687; comment the folowing line to enable WiFi debugging
7788; -D NDEBUG
7889
79- [env:portenta_h7_m7]
80- platform = ststm32
81- board = portenta_h7_m7
90+ [env:DUE]
91+ platform = atmelsam
8292framework = arduino
93+ board = due
8394
84- [env:portenta_h7_m4]
85- platform = ststm32
86- board = portenta_h7_m4
87- framework = arduino
95+ ; change microcontroller
96+ board_build.mcu = at91sam3x8e
97+
98+ ; change MCU frequency
99+ board_build.f_cpu = 84000000L
100+
101+ ; ============================================================
102+ ; ============================================================
88103
89104[env:ESP8266]
90105platform = espressif8266
@@ -131,9 +146,12 @@ board = nodemcuv2
131146; board = xinabox_cw01
132147; board = esp32doit-devkit-v1
133148
149+ ; ============================================================
150+ ; ============================================================
151+
134152[env:ESP32]
135153platform = espressif32
136- framework = arduino, espidf
154+ framework = arduino
137155; ============================================================
138156; Board configuration
139157; choose your board by uncommenting one of the following lines
@@ -172,6 +190,9 @@ board = esp32doit-devkit-v1
172190; board = iotbusproteus
173191; board = nina_w10
174192
193+ ; ============================================================
194+ ; ============================================================
195+
175196[env:SAMD]
176197platform = atmelsam
177198framework = arduino
@@ -245,6 +266,8 @@ board = adafruit_itsybitsy_m4
245266; board = rolawan
246267; board = seeed_grove_ui_wireless
247268
269+ ; ============================================================
270+ ; ============================================================
248271
249272[env:NRF52]
250273platform = nordicnrf52
@@ -266,6 +289,9 @@ board = feather52840
266289; board = ninab302
267290; board = ninab112
268291
292+ ; ============================================================
293+ ; ============================================================
294+
269295[env:STM32]
270296platform = ststm32
271297framework = arduino
@@ -377,3 +403,107 @@ framework = arduino
377403; Board configuration Many more Boards to be filled
378404; ============================================================
379405
406+ ; ============================================================
407+ ; ============================================================
408+
409+ [env:AVR]
410+ platform = atmelavr
411+ framework = arduino
412+
413+ ; ============================================================
414+ ; Board configuration AVR
415+ ; ============================================================
416+
417+ ; board = yun
418+ ; board = uno
419+ ; board = diecimila
420+ ; board = nano
421+ ; board = nanoatmega328
422+ ; board = mega
423+ board = megaatmega2560
424+ ; board = megaADK
425+ ; board = leonardo
426+ ; board = leonardoeth
427+ ; board = micro
428+ ; board = esplora
429+ ; board = mini
430+ ; board = ethernet
431+ ; board = fio
432+ ; board = bt
433+ ; board = LilyPadUSB
434+ ; board = lilypad
435+ ; board = pro
436+ ; board = atmegang
437+ ; board = robotControl
438+ ; board = robotMotor
439+ ; board = gemma
440+ ; board = circuitplay32u4cat
441+ ; board = yunmini
442+ ; board = chiwawa
443+ ; board = one
444+ ; board = unowifi
445+
446+ ; ============================================================
447+ ; ============================================================
448+
449+ [env:TEENSY]
450+ platform = teensy
451+ framework = arduino
452+
453+ ; ============================================================
454+ ; Choose your board by uncommenting one of the following lines
455+ ; ============================================================
456+
457+ ; ============================================================
458+ ; Board configuration TEENSY
459+ ; ============================================================
460+
461+ ; board = teensy2
462+ ; board = teensy2pp
463+ ; board = teensy30
464+ ; board = teensy31
465+ ; board = teensylc
466+ ; board = teensy35
467+ ; board = teensy36
468+ ; board = teensy40
469+ ; board = teensy41
470+
471+ ; ============================================================
472+ ; Choose your board by uncommenting one of the following lines
473+ ; ============================================================
474+
475+ ; ============================================================
476+ ; Board configuration raspberrypi pico
477+ ; ============================================================
478+
479+ [env:pico]
480+ ; ============================================================
481+ ; Just a sample
482+ ; You have to research and fix if there is issue
483+ ; ============================================================
484+ platform = raspberrypi
485+ board = pico
486+ framework = arduino
487+ upload_protocol = picotool
488+
489+ ; ============================================================
490+ ; ============================================================
491+
492+ ; ============================================================
493+ ; Board configuration portenta_h7_m7
494+ ; ============================================================
495+
496+ [env:portenta_h7_m7]
497+ platform = ststm32
498+ board = portenta_h7_m7
499+ framework = arduino
500+
501+ ; ============================================================
502+ ; Board configuration portenta_h7_m4
503+ ; ============================================================
504+
505+ [env:portenta_h7_m4]
506+ platform = ststm32
507+ board = portenta_h7_m4
508+ framework = arduino
509+
0 commit comments