Skip to content

Commit be6ec37

Browse files
authored
Merge pull request #46 from kbr-net/v12c
V12c
2 parents 52f74a1 + 7c53cad commit be6ec37

File tree

27 files changed

+961
-435
lines changed

27 files changed

+961
-435
lines changed

HISTORY

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
v1.2:
2+
- touchscreen auto detection added
3+
- usage without display
4+
- fixed buffer overflow on tape blocks > 256 bytes
5+
- support reading baud from CAS file
6+
- added support for ILI9325 displays without scroll feature(willy)
7+
- added support for RM68090 display(vladkvladk)
8+
- added ATX support for ED images
9+
- support DD and QD image creation on "New" button
10+
- fixed bug format image on insert after "New" button cleared
11+
- added a button ">>>", to quickly change current drive to next image
12+
in directory
13+
- added ATX motor start delay for more compatiblity
14+
- honor read only flag of image file
15+
116
v1.1:
217
- screen blanker only on main page
318
- fixed display bug after formatting new image

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
dirs = atmega328* sdrive-ctrl
1+
DIRS = atmega328* sdrive-ctrl
22

33
all:
4-
for dir in $(dirs); \
4+
for dir in $(DIRS); \
55
do $(MAKE) -C $$dir || exit 1; \
66
done
77

88
clean:
9-
for dir in $(dirs); \
9+
for dir in $(DIRS); \
1010
do $(MAKE) -C $$dir clean; \
1111
done
1212

README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ What do you need?
1313
- an Elegoo 2,8" TFT-Touchscreen Shield or similar with ILI9341 compatible
1414
controller using 8bit parallel mode(i think, that one from the adafruit
1515
project is the same). Touchlines must be wired as followed:
16+
Update! Touchlines are now auto detected!
1617

1718
X+ <-> 8
1819
X- <-> A2

0 commit comments

Comments
 (0)