2 * Copyright © 2012 Keith Packard <keithp@keithp.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
19 package org.altusmetrum.micropeak;
22 import java.awt.event.*;
25 import java.util.concurrent.*;
27 import org.altusmetrum.altoslib_14.*;
28 import org.altusmetrum.altosuilib_14.*;
30 public class MicroDownload extends AltosUIDialog implements Runnable, ActionListener, MicroSerialLog, WindowListener {
37 LinkedList<Integer> log_queue = new LinkedList<Integer>();
43 public void windowActivated(WindowEvent e) {
46 public void windowClosed(WindowEvent e) {
51 public void windowClosing(WindowEvent e) {
54 public void windowDeactivated(WindowEvent e) {
57 public void windowDeiconified(WindowEvent e) {
60 public void windowIconified(WindowEvent e) {
63 public void windowOpened(WindowEvent e) {
66 private void done_internal() {
67 if (data != null && data.crc_valid) {
68 if (data.nsamples == 0) {
69 JOptionPane.showMessageDialog(owner,
70 "No Flight Data Present",
72 JOptionPane.WARNING_MESSAGE);
74 status_value.setText("Received MicroPeak Data");
75 owner = owner.SetData(data);
76 MicroSave save = new MicroSave(owner, data);
78 owner.SetName(data.name);
81 JOptionPane.showMessageDialog(owner,
83 "Flight data corrupted",
84 JOptionPane.ERROR_MESSAGE);
90 public void drain_queue() {
94 if (log_queue.isEmpty()) {
98 c = log_queue.remove();
108 } else if (' ' <= c && c <= '~') {
109 byte[] bytes = new byte[1];
111 s = new String(bytes, AltosLib.unicode_set);
114 s = String.format("\\0x%02x", c & 0xff);
117 serial_log.append(s);
118 if (log_column > 40) {
119 serial_log.append("\n");
125 public void log_char(int c) {
128 if (log_run == null) {
129 log_run = new Runnable() {
134 SwingUtilities.invokeLater(log_run);
140 Runnable r = new Runnable() {
144 } catch (Exception ex) {
148 SwingUtilities.invokeLater(r);
155 data = new MicroData(serial, device.toShortString());
156 if (data != null && data.crc_valid)
158 } catch (MicroData.NonHexcharException nhe) {
162 } catch (FileNotFoundException fe) {
163 } catch (IOException ioe) {
164 } catch (InterruptedException ie) {
165 } catch (MicroData.FileEndedException fee) {
171 Thread serial_thread;
174 public class SerialWriter implements Runnable {
183 } catch (InterruptedException ie) {
187 public SerialWriter(MicroSerial serial) {
188 this.serial = serial;
192 public void start() {
193 serial.set_log(this);
194 serial_thread = new Thread(this);
195 serial_thread.start();
197 SerialWriter writer = new SerialWriter(serial);
198 write_thread = new Thread(writer);
199 write_thread.start();
202 public void actionPerformed(ActionEvent ae) {
203 if (serial_thread != null) {
205 serial_thread.interrupt();
210 public MicroDownload(MicroPeak owner, AltosDevice device, MicroSerial serial) {
211 super (owner, "Download MicroPeak Data", false);
215 GridBagConstraints c;
216 Insets il = new Insets(4,4,4,4);
217 Insets ir = new Insets(4,4,4,4);
220 this.device = device;
221 this.serial = serial;
223 pane = getScrollablePane();
224 pane.setLayout(new GridBagLayout());
226 c = new GridBagConstraints();
227 c.gridx = 0; c.gridy = y;
228 c.fill = GridBagConstraints.NONE;
229 c.anchor = GridBagConstraints.LINE_START;
231 JLabel device_label = new JLabel("Device:");
232 pane.add(device_label, c);
234 c = new GridBagConstraints();
235 c.gridx = 1; c.gridy = y;
236 c.fill = GridBagConstraints.NONE;
238 c.anchor = GridBagConstraints.LINE_START;
240 JLabel device_value = new JLabel(device.toString());
241 pane.add(device_value, c);
244 c = new GridBagConstraints();
245 c.gridx = 0; c.gridy = y;
246 c.gridwidth = GridBagConstraints.REMAINDER;
247 c.fill = GridBagConstraints.HORIZONTAL;
249 c.anchor = GridBagConstraints.LINE_START;
251 JLabel help_text = new JLabel(
252 "<html><i>Turn on the MicroPeak and place the LED inside the<br>" +
253 "opening in the top of the MicroPeak USB adapter.<br> " +
254 "Verify that the blue LED in the side of the USB adapter<br>" +
255 "is blinking along with the orange LED on the MicroPeak.</i></html>");
256 // help_text.setEditable(false);
258 pane.add(help_text, c);
261 c = new GridBagConstraints();
262 c.gridx = 0; c.gridy = y;
264 c.fill = GridBagConstraints.HORIZONTAL;
266 c.anchor = GridBagConstraints.LINE_START;
268 status_value = new JLabel("Waiting for MicroPeak data...");
269 pane.add(status_value, c);
272 serial_log = new JTextArea(10, 20);
273 serial_log.setEditable(false);
275 JScrollPane serial_scroll = new JScrollPane(serial_log);
276 serial_scroll.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
278 c = new GridBagConstraints();
279 c.gridx = 0; c.gridy = y;
280 c.gridwidth = GridBagConstraints.REMAINDER;
281 c.fill = GridBagConstraints.BOTH;
284 c.anchor = GridBagConstraints.LINE_START;
287 pane.add(serial_scroll, c);
290 cancel = new JButton("Cancel");
291 c = new GridBagConstraints();
292 c.fill = GridBagConstraints.NONE;
293 c.anchor = GridBagConstraints.EAST;
294 c.gridx = 0; c.gridy = y;
295 c.gridwidth = GridBagConstraints.REMAINDER;
296 Insets ic = new Insets(4,4,4,4);
301 cancel.addActionListener(this);
304 setLocationRelativeTo(owner);