diff --git a/README.md b/README.md index 83c12b9..2a30d0a 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,8 @@ Die SD Karte (Ordner mp3 und advert) hat sich gegenüber der Version 3.1.11 geä # Change Log -## Version 3.2.1 (05.12.2024) +## Version 3.2.1 (13.01.2025) +- [Issue 135](https://github.com/tonuino/TonUINO-TNG/issues/135): Make new variants available for online uploads II - [Issue 254](https://github.com/tonuino/TonUINO-TNG/issues/254): Enhance configuration in constants.hpp - [Issue 245](https://github.com/tonuino/TonUINO-TNG/issues/245): Support NFC 215 Tags diff --git a/TonUINO-TNG.ino b/TonUINO-TNG.ino index e59a37f..45d8a58 100644 --- a/TonUINO-TNG.ino +++ b/TonUINO-TNG.ino @@ -11,7 +11,7 @@ |_ _|___ ___| | | | | | | | | | . | | | |- -| | | | | | |_| |___|_|_|_____|_____|_|___|_____| - TonUINO Version 3.1 - refactored by Boerge1 + TonUINO Version 3.x - refactored by Boerge1 created by Thorsten Voß and licensed under GNU/GPL. Information and contribution at https://tonuino.de. @@ -32,10 +32,10 @@ void setup() LOG(init_log, s_error, F("|_ _|___ ___| | | | | | |")); LOG(init_log, s_error, F(" | | | . | | | |- -| | | | | |")); LOG(init_log, s_error, F(" |_| |___|_|_|_____|_____|_|___|_____|")); - LOG(init_log, s_error, F("TonUINO Version 3.1 - refactored by Boerge1\n")); + LOG(init_log, s_error, F("TonUINO Version 3.x - refactored by Boerge1\n")); LOG(init_log, s_error, F("created by Thorsten Voß and licensed under GNU/GPL.")); LOG(init_log, s_error, F("Information and contribution at https://tonuino.de.\n")); - LOG(init_log, s_error, F("V3.2.1 05.12.24\n")); + LOG(init_log, s_error, F("V3.2.1 13.01.25\n")); #ifdef TonUINO_Classic LOG(init_log, s_error, F("C "), lf_no); diff --git a/platformio.ini b/platformio.ini index f5f754f..189157d 100644 --- a/platformio.ini +++ b/platformio.ini @@ -88,6 +88,20 @@ build_flags = board_upload.use_1200bps_touch = yes monitor_speed = 115200 +[env:TonUINO_Every_5f] +platform = atmelmegaavr +board = ATmega4809 +board_build.variant = nano-every + +build_flags = + ${env.build_flags} + -D TonUINO_Every=1 + -D FIVEBUTTONS=1 + -D NEO_RING -D NEO_RING_EXT -D SPKONOFF -D HPJACKDETECT -D QUIZ_GAME -D MEMORY_GAME + +board_upload.use_1200bps_touch = yes +monitor_speed = 115200 + ; ###### Classic with Every 4808 ######################### [env:TonUINO_Every4808_3] @@ -125,6 +139,19 @@ build_flags = monitor_speed = 115200 +[env:TonUINO_Every4808_5f] +platform = atmelmegaavr +board = ATmega4808 +board_build.variant = nano-4808 + +build_flags = + ${env.build_flags} + -D TonUINO_Every_4808=1 + -D FIVEBUTTONS=1 + -D NEO_RING -D NEO_RING_EXT -D SPKONOFF -D HPJACKDETECT -D QUIZ_GAME -D MEMORY_GAME + +monitor_speed = 115200 + ; ###### All in One ###################################### [env:ALLinONE_3] @@ -219,3 +246,20 @@ build_flags = upload_protocol = arduino upload_flags = monitor_speed = 115200 + +[env:ALLinONE_Plus_5f] +platform = atmelmegaavr +board = ATmega4809 +board_build.f_cpu = 16000000L +board_hardware.oscillator = internal +board_build.variant = 48pin-standard + +build_flags = + ${env.build_flags} + -D ALLinONE_Plus=1 + -D NEO_RING -D NEO_RING_EXT -D QUIZ_GAME -D MEMORY_GAME + +upload_protocol = arduino +upload_flags = +monitor_speed = 115200 +