summaryrefslogtreecommitdiff
path: root/display
diff options
context:
space:
mode:
authorgregor-anich-uibk <63648071+gregor-anich-uibk@users.noreply.github.com>2020-08-08 14:17:43 +0200
committerGerhard Sittig <gerhard.sittig@gmx.net>2020-08-08 17:31:09 +0200
commit26897a96a14b2ff426c7be6d9825c9e4365324d5 (patch)
treed3a102f31fc46086d3d2cf2cf46bcb69695ff34e /display
parent944df7c1cd39a6b2319a5f20d5ffce74d3727619 (diff)
downloadsigrok-dumps-26897a96a14b2ff426c7be6d9825c9e4365324d5.tar.gz
sigrok-dumps-26897a96a14b2ff426c7be6d9825c9e4365324d5.zip
st7735: Add dump with unknown command
[ gsi: README markup nits, and shorter snippet for automated test ]
Diffstat (limited to 'display')
-rw-r--r--display/st7735/README25
-rw-r--r--display/st7735/st7735_unknown_command.srbin0 -> 126229 bytes
-rw-r--r--display/st7735/st7735_unknown_command_snippet.srbin0 -> 47061 bytes
3 files changed, 25 insertions, 0 deletions
diff --git a/display/st7735/README b/display/st7735/README
index 0c76111..44755a2 100644
--- a/display/st7735/README
+++ b/display/st7735/README
@@ -37,3 +37,28 @@ Long pauses are caused be sleeps for a few hundreds of milliseconds, which are
required by the spec. Other oddities like frequent changes of CS are caused by
specific library implementation.
+
+Dump with unknown command
+-------------------------
+
+Taken with the same setup as above on a 128x160 display with Arduino TFT library
+and the following code:
+
+ #include <TFT.h>
+ #include <SPI.h>
+
+ #define cs 10
+ #define dc 9 // A0
+ #define rst 8
+
+ TFT TFTscreen = TFT(cs, dc, rst);
+
+ void setup()
+ {
+ TFTscreen.begin();
+ TFTscreen.background(0, 255, 0);
+ }
+
+ void loop()
+ {
+ }
diff --git a/display/st7735/st7735_unknown_command.sr b/display/st7735/st7735_unknown_command.sr
new file mode 100644
index 0000000..33f3d5e
--- /dev/null
+++ b/display/st7735/st7735_unknown_command.sr
Binary files differ
diff --git a/display/st7735/st7735_unknown_command_snippet.sr b/display/st7735/st7735_unknown_command_snippet.sr
new file mode 100644
index 0000000..24d8052
--- /dev/null
+++ b/display/st7735/st7735_unknown_command_snippet.sr
Binary files differ