diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-02-11 10:54:47 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-02-11 10:54:47 +0100 |
commit | b6206e83d10eb7e350b6ea17ab9f649a09332f52 (patch) | |
tree | 3599c4345fa56a4a0129fc1dcb7a0369a086492c /src/app/bad-apple-atmega2560-ssd1306/Kconfig | |
parent | 0d6dfd6e47cbeff1e10f0c536824e5f7259b21e8 (diff) |
Add Bad Apple on ATMega2560 (not working very well)
Looks like these devices can only use the lower 64 kB as PROGMEM, so the
whole exercise is kinda pointless. Also inflate() is slow af.
Diffstat (limited to 'src/app/bad-apple-atmega2560-ssd1306/Kconfig')
-rw-r--r-- | src/app/bad-apple-atmega2560-ssd1306/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/app/bad-apple-atmega2560-ssd1306/Kconfig b/src/app/bad-apple-atmega2560-ssd1306/Kconfig new file mode 100644 index 0000000..8f56eb6 --- /dev/null +++ b/src/app/bad-apple-atmega2560-ssd1306/Kconfig @@ -0,0 +1,11 @@ +# Copyright 2020 Birte Kristina Friesel +# +# SPDX-License-Identifier: CC0-1.0 + +prompt "Bad Apple on ATMega2560 + SSD1306 128x32 OLED" +depends on arch_atmega2560 +depends on meta_driver_timer +depends on driver_ssd1306 && driver_ssd1306_mode_horizontal +depends on lib_inflate && lib_inflate_lut +depends on !loop +depends on !wakeup |