From 53a1c079afb836b57c4cccd9a74a6aab4d91c880 Mon Sep 17 00:00:00 2001 From: elral <3263285+elral@users.noreply.github.com> Date: Thu, 29 Aug 2024 11:06:50 +0200 Subject: [PATCH 1/7] update ot FW version 2.5.2 --- Template/MyCustomDevice_platformio.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Template/MyCustomDevice_platformio.ini b/Template/MyCustomDevice_platformio.ini index 9ba1df4..174328d 100644 --- a/Template/MyCustomDevice_platformio.ini +++ b/Template/MyCustomDevice_platformio.ini @@ -13,7 +13,7 @@ build_flags = build_src_filter = +<../Template> ; build files for your custom device, replace "Template" by your folder name lib_deps = ; You can add additional libraries if required -custom_core_firmware_version = 2.5.1 ; define the version from the core firmware files your build should base on +custom_core_firmware_version = 2.5.2 ; define the version from the core firmware files your build should base on custom_device_folder = Template ; path to your Custom Device Sources, replace "Template" by your folder name custom_community_project = Your_Project ; Should match "Project" from section "Community" within the board.json file, it's the name of the ZIP file From 1495da6b04cdc30a08ddf176a61c02bf632f4db4 Mon Sep 17 00:00:00 2001 From: elral <3263285+elral@users.noreply.github.com> Date: Fri, 1 Nov 2024 13:20:51 +0100 Subject: [PATCH 2/7] next FW release will be 3.0 instead of 2.5.2 --- Template/MyCustomDevice_platformio.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Template/MyCustomDevice_platformio.ini b/Template/MyCustomDevice_platformio.ini index c9ba38d..5587fee 100644 --- a/Template/MyCustomDevice_platformio.ini +++ b/Template/MyCustomDevice_platformio.ini @@ -14,7 +14,7 @@ build_flags = build_src_filter = +<../Template> ; build files for your custom device, replace "Template" by your folder name lib_deps = ; You can add additional libraries if required -custom_core_firmware_version = 2.5.2 ; define the version from the core firmware files your build should base on +custom_core_firmware_version = 3.0 ; define the version from the core firmware files your build should base on custom_device_folder = Template ; path to your Custom Device Sources, replace "Template" by your folder name custom_community_project = Your_Project ; Should match "Project" from section "Community" within the board.json file, it's the name of the ZIP file From 074da23944bad495ca1077094909a2e4dbf15796 Mon Sep 17 00:00:00 2001 From: elral <3263285+elral@users.noreply.github.com> Date: Fri, 1 Nov 2024 14:27:46 +0100 Subject: [PATCH 3/7] tag from github is 3.0.0 and not 3.0 --- Template/MyCustomDevice_platformio.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Template/MyCustomDevice_platformio.ini b/Template/MyCustomDevice_platformio.ini index 5587fee..a533f7d 100644 --- a/Template/MyCustomDevice_platformio.ini +++ b/Template/MyCustomDevice_platformio.ini @@ -14,7 +14,7 @@ build_flags = build_src_filter = +<../Template> ; build files for your custom device, replace "Template" by your folder name lib_deps = ; You can add additional libraries if required -custom_core_firmware_version = 3.0 ; define the version from the core firmware files your build should base on +custom_core_firmware_version = 3.0.0 ; define the version from the core firmware files your build should base on custom_device_folder = Template ; path to your Custom Device Sources, replace "Template" by your folder name custom_community_project = Your_Project ; Should match "Project" from section "Community" within the board.json file, it's the name of the ZIP file From e5e32ca95741b8444094a6f5c61d7a119641b61a Mon Sep 17 00:00:00 2001 From: elral <3263285+elral@users.noreply.github.com> Date: Wed, 12 Feb 2025 13:12:06 +0100 Subject: [PATCH 4/7] nothing --- Template/MyCustomDevice_platformio.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/Template/MyCustomDevice_platformio.ini b/Template/MyCustomDevice_platformio.ini index 72c367e..cd73a63 100644 --- a/Template/MyCustomDevice_platformio.ini +++ b/Template/MyCustomDevice_platformio.ini @@ -150,3 +150,4 @@ custom_core_firmware_version = ${env_template.custom_core_firmware_version} ; do custom_community_project = ${env_template.custom_community_project} ; don't change this one! custom_source_folder = ${env_template.custom_source_folder} ; don't change this one! custom_zip_filename = ${env_template.custom_zip_filename} ; don't change this one! + From 1c4d0b034ef207d733fea29f1737a17aac042de8 Mon Sep 17 00:00:00 2001 From: elral <3263285+elral@users.noreply.github.com> Date: Tue, 25 Feb 2025 08:41:12 +0100 Subject: [PATCH 5/7] disable stepper support for ProMicro, otherwise flash is exceeded --- Template/MyCustomDevice_platformio.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/Template/MyCustomDevice_platformio.ini b/Template/MyCustomDevice_platformio.ini index cd73a63..668be98 100644 --- a/Template/MyCustomDevice_platformio.ini +++ b/Template/MyCustomDevice_platformio.ini @@ -54,6 +54,7 @@ build_flags = -I./src/_Boards/Atmel/Board_ProMicro ; Include the required board definition. If you need your own definition, adapt this to your path (e.g. -I./CustomDevices/_template/_Boards) '-DMOBIFLIGHT_TYPE="Mobiflight Template Micro"' ; this must match with "MobiFlightType" within the .json file '-DMOBIFLIGHT_NAME="Mobiflight Template"' ; this will show up as Name in the settings dialog unless it gets change from there + -DMF_STEPPER_SUPPORT=0 ; disable stepper support, could also be another device. Not all devices will fit into flash for ProMicro build_src_filter = ${env.build_src_filter} ; don't change this one! ${env_template.build_src_filter} ; don't change this one! From 6e7a412aee746747cf4a742770afc4161c6b4f07 Mon Sep 17 00:00:00 2001 From: elral <3263285+elral@users.noreply.github.com> Date: Fri, 18 Apr 2025 08:43:49 +0200 Subject: [PATCH 6/7] Next FW version will be 3.0.1 --- Template/MyCustomDevice_platformio.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Template/MyCustomDevice_platformio.ini b/Template/MyCustomDevice_platformio.ini index 668be98..7fa2150 100644 --- a/Template/MyCustomDevice_platformio.ini +++ b/Template/MyCustomDevice_platformio.ini @@ -14,7 +14,7 @@ build_flags = build_src_filter = +<../Template> ; build files for your custom device, replace "Template" by your folder name lib_deps = ; You can add additional libraries if required -custom_core_firmware_version = 3.0.0 ; define the version from the core firmware files your build should base on +custom_core_firmware_version = 3.0.1 ; define the version from the core firmware files your build should base on custom_source_folder = Template ; path to your Custom Device Sources, replace "Template" by your folder name custom_community_project = YourProject ; Folder name inside zip file, also ZIP file name if "custom_zip_filename" is not changed custom_zip_filename = ${env_template.custom_community_project} ; Name of the zip-file, overwrite it to define an different zip-file name From 3f609032d884195ca2645b8f9d545ed4b4aadf95 Mon Sep 17 00:00:00 2001 From: elral <3263285+elral@users.noreply.github.com> Date: Wed, 30 Jul 2025 08:43:38 +0200 Subject: [PATCH 7/7] latest FW vresion will be 3.0.0 --- Template/MyCustomDevice_platformio.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Template/MyCustomDevice_platformio.ini b/Template/MyCustomDevice_platformio.ini index 7fa2150..668be98 100644 --- a/Template/MyCustomDevice_platformio.ini +++ b/Template/MyCustomDevice_platformio.ini @@ -14,7 +14,7 @@ build_flags = build_src_filter = +<../Template> ; build files for your custom device, replace "Template" by your folder name lib_deps = ; You can add additional libraries if required -custom_core_firmware_version = 3.0.1 ; define the version from the core firmware files your build should base on +custom_core_firmware_version = 3.0.0 ; define the version from the core firmware files your build should base on custom_source_folder = Template ; path to your Custom Device Sources, replace "Template" by your folder name custom_community_project = YourProject ; Folder name inside zip file, also ZIP file name if "custom_zip_filename" is not changed custom_zip_filename = ${env_template.custom_community_project} ; Name of the zip-file, overwrite it to define an different zip-file name