Capture the display of a Rigol DS1000Z series oscilloscope by LAN using LXI SCPI commands
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

.gitignore 507B

123456789101112
  1. # *** START section for manually edited lines
  2. # 'captures' is a mandatory directory for this project,
  3. # but git can add only files, and can not add an empty directory.
  4. # We want to preserve 'captures' in the repository tree structure,
  5. # so we will ignore everything except the 'captures/.gitignore' file.
  6. # This trick will always add the 'captures' directory in the repository,
  7. # even when there are no other files in 'captures'.
  8. *
  9. !.gitignore
  10. # *** STOP section for manually edited lines