Changeset 4647


Ignore:
Timestamp:
09/16/08 02:45:40 (5 years ago)
Author:
werner
Message:

Renamed dplore.py to the less pessimistic dxplore.py
Sorry for the monster commit ...

Location:
developers/werner/ahrt/host/tmc
Files:
1 edited
2 moved

Legend:

Unmodified
Added
Removed
  • developers/werner/ahrt/host/tmc/demo/dxplore.py

    r4646 r4647  
    1919# 
    2020 
    21 from tmc.dplore import dplore 
     21from tmc.dxplore import dxplore 
    2222from tmc.wave import waves 
    2323from sys import argv 
     
    4545 
    4646da.reverse() 
    47 dplore(da, dig[1].start(), min, argv[1]) 
     47dxplore(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# 
    213 
    314# 
     
    516# 
    617# TODO: 
    7 # - zoom 
    8 # - pan 
    9 # - resize 
    10 # - auto-scale 
    1118# - 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 
    1524 
    1625from Tkinter import * 
     
    570579 
    571580 
    572 class dplore: 
     581class dxplore: 
    573582 
    574583    def __init__(self, channels, t0, sample_step, title = None): 
  • developers/werner/ahrt/host/tmc/setup.py

    r4646 r4647  
    66    py_modules = [ "tmc.instrument", 
    77        "tmc.wave", "tmc.trigger", "tmc.shape", 
    8         "tmc.decode", "tmc.dplore", 
     8        "tmc.decode", "tmc.dxplore", 
    99        "tmc.meter", "tmc.scope", "tmc.power", "tmc.function" ], 
    1010    package_dir = { "tmc": "lib" }, 
Note: See TracChangeset for help on using the changeset viewer.