From: gregor-anich-uibk Date: Sat, 8 Aug 2020 12:17:43 +0000 (+0200) Subject: st7735: Add dump with unknown command X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-dumps.git;a=commitdiff_plain;h=26897a96a14b2ff426c7be6d9825c9e4365324d5 st7735: Add dump with unknown command [ gsi: README markup nits, and shorter snippet for automated test ] --- 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 + #include + + #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 Binary files /dev/null and b/display/st7735/st7735_unknown_command.sr 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 Binary files /dev/null and b/display/st7735/st7735_unknown_command_snippet.sr differ