#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
+#include <sys/types.h>
+#include <sys/wait.h>
#include <fcntl.h>
#include <unistd.h>
+#include <signal.h>
+#include <time.h>
#include <readline/readline.h>
#include <readline/history.h>
+#include "png.h"
+
//This routine locates a scope by VID/PID and returns an opened handle to it.
usb_dev_handle *find_scope() {
sendscpi (sc, ":TIM:OFFSET 0", NULL, 0);
}
+void do_get_screen(struct usb_dev_handle *sc)
+{
+ unsigned char screen[320*234];
+ time_t lt;
+ char filename[256];
+ unsigned char *png;
+ int imglen;
+ int ret;
+ int l;
+ int fd;
+ pid_t display;
+
+ /* Hide "RMT" from screen */
+ l = sendscpi(sc, ":KEY:LOCK DISABLE", NULL, 0);
+ usleep(20000);
+
+ l = sendscpi(sc, ":LCD:DATA?", screen, sizeof(screen));
+
+ if (l != sizeof(screen)) {
+ printf ("hmm. didnt' get %d bytes, but %d\n\n", sizeof(screen), l);
+ }
+ png = lcd2png(screen, &imglen);
+
+ lt = time(NULL);
+ strftime(filename, sizeof(filename), "screen_%Y%m%d-%H%M%S.png", localtime(<));
+ fd=open(filename, O_CREAT|O_WRONLY, 0644);
+ if (fd == -1) {
+ perror("open");
+ exit(EXIT_FAILURE);
+ }
+
+ while(imglen > 0) {
+ ret = write(fd, png, imglen);
+ if (ret == -1) {
+ perror("write");
+ exit(EXIT_FAILURE);
+ }
+ imglen -= ret;
+ }
+ close(fd);
+ free(png);
+
+ printf("Waveform saved as %s\n", filename);
+
+ display = fork();
+ switch(display) {
+ case 0:
+ execlp("display", "display", filename, NULL);
+ exit(0);
+ break;
+ case -1:
+ perror("fork");
+ break;
+ default:
+ break;
+ }
+}
+
+void child_reaper(int sig)
+{
+ pid_t child;
+
+ do {
+ child = waitpid(-1, NULL, WNOHANG);
+ } while(child > 0);
+
+}
int main(int argc, char **argv)
{
char *scpi;
unsigned char *buff;
int l;
+ struct sigaction act;
+
//Init libusb
usb_init();
//Locate and open the scope
//Initialize scope
initscope(sc);
buff = malloc (1024*1024);
+ if (buff == NULL) {
+ perror("malloc");
+ exit(EXIT_FAILURE);
+ }
+
+ bzero(&act, sizeof(act));
+ act.sa_handler = child_reaper;
+ act.sa_flags = SA_NOCLDSTOP|SA_RESTART;
+ if (sigaction(SIGCHLD, &act, NULL) == -1) {
+ perror("sigaction");
+ exit(EXIT_FAILURE);
+ }
+
while (1) {
scpi = readline ("> ");
do_plot (sc);
continue;
}
- if (strncmp (scpi, "databuf", 4) == 0) {
+ if (strncmp (scpi, "databuf", 7) == 0) {
do_get_buf (sc);
continue;
}
+ if (strncmp (scpi, "screen", 6) == 0) {
+ do_get_screen (sc);
+ continue;
+ }
l = strlen (scpi);
//printf ("got buf(%d): ", l);