Skip to content

Commit

Permalink
Merge pull request #258: Issue 135: Make new variants available for o…
Browse files Browse the repository at this point in the history
…nline upload II
  • Loading branch information
boerge1 authored Jan 13, 2025
2 parents 7bfc047 + bae0c25 commit 055b91f
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions TonUINO-TNG.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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);
Expand Down
44 changes: 44 additions & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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]
Expand Down Expand Up @@ -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

0 comments on commit 055b91f

Please sign in to comment.