Changeset 4647
- Timestamp:
- 09/16/08 02:45:40 (5 years ago)
- Location:
- developers/werner/ahrt/host/tmc
- Files:
-
- 1 edited
- 2 moved
-
demo/dxplore.py (moved) (moved from developers/werner/ahrt/host/tmc/demo/dplore.py) (2 diffs)
-
lib/dxplore.py (moved) (moved from developers/werner/ahrt/host/tmc/lib/dplore.py) (3 diffs)
-
setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
developers/werner/ahrt/host/tmc/demo/dxplore.py
r4646 r4647 19 19 # 20 20 21 from tmc.d plore import dplore21 from tmc.dxplore import dxplore 22 22 from tmc.wave import waves 23 23 from sys import argv … … 45 45 46 46 da.reverse() 47 d plore(da, dig[1].start(), min, argv[1])47 dxplore(da, dig[1].start(), min, argv[1]) -
developers/werner/ahrt/host/tmc/lib/dxplore.py
r4646 r4647 1 #!/usr/bin/python 1 # 2 # dxplore.py - GUI for interactive exploration of digital waveforms 3 # 4 # Copyright (C) 2008 by OpenMoko, Inc. 5 # Written by Werner Almesberger <werner@openmoko.org> 6 # All Rights Reserved 7 # 8 # This program is free software; you can redistribute it and/or modify 9 # it under the terms of the GNU General Public License as published by 10 # the Free Software Foundation; either version 2 of the License, or 11 # (at your option) any later version. 12 # 2 13 3 14 # … … 5 16 # 6 17 # TODO: 7 # - zoom8 # - pan9 # - resize10 # - auto-scale11 18 # - clean up 12 # 13 14 # apt-get install python-tk 19 # - fix off-by-one error in selection 20 # - add inversion 21 # - add deglitching 22 # 23 15 24 16 25 from Tkinter import * … … 570 579 571 580 572 class d plore:581 class dxplore: 573 582 574 583 def __init__(self, channels, t0, sample_step, title = None): -
developers/werner/ahrt/host/tmc/setup.py
r4646 r4647 6 6 py_modules = [ "tmc.instrument", 7 7 "tmc.wave", "tmc.trigger", "tmc.shape", 8 "tmc.decode", "tmc.d plore",8 "tmc.decode", "tmc.dxplore", 9 9 "tmc.meter", "tmc.scope", "tmc.power", "tmc.function" ], 10 10 package_dir = { "tmc": "lib" },
Note: See TracChangeset
for help on using the changeset viewer.
